React hook 在酝酿近一年后,终于在16.8稳定版中重磅推出。在此前后FB的Dan大神劳心劳力地几乎每天在Twitter上给大家洗脑宣传。
那它究竟跟之前的React应用相比有什么改变?
Memoize是贯穿hook用法的一个非常重要的概念,理解它是正确使用hook的基石。
Memoize基本上就是把一些程序中一些不需要反复计算的值和上下文(context)保存在内存中,起到类似缓存的作用,下次运行计算时发现已经有计算并保存过这个值就直接从内存中读取而不再重新计算。
Javascript中比较常见的做法可参考lodash.memoize源代码,它通过给function设置一个Map的属性,将function的传参作为key,运行结果存为这个key的value值。下次调用这个function时,它就先去查看key是否存在,存在的话就直接将对应的值返回,跳过运行方法里的代码。
这在functional programming中非常的实用。不过也就是说,只有所谓纯粹的function才能适用这种方式,输入和输出是一一对应的关系。
React hooks都是被Memoize的,绑定在使用的component中,只有指定的值发生了变化,这个hook中的代码和代码上下文才会被更新和触发。让我在下文中一步步说明。
在hook之前,用function写的Component是无法拥有自己的状态值的。想要拥有自己的状态,只能痛苦地将function改成Class Component。
Class Component中使用this.setState来设置一个部件的状态:
class MyComponent extends React.Component{
constructor(props) {
super(props);
// 初始化state值
this.state= {
myState: 1
};
this.toggleState = this.toggleState.bind(this);
}
// 将myState在0和1之间切换
toggleState() {
this.setState(prevState => {
return { myState: 1 - prevState.myState };
});
}
render() {
return <button onClick={toggleState}>Toggle State</Button>;
}
}
使用React hook之后这就可以在function component中实现,并且更为简洁:
function MyComponent (props) {
const [myState, setMyState] = useState(1);
// 这里应该用useCallback, 会在后面说明
const toggleState = () => setMyState(1 - myState);
return <button onClick={toggleState}>Toggle State</button>;
}
代码行数精简为原来的三分之一之外,使用起来也更加地直观。
useState
接收一个值作为一个state的初始值,返回一个数组。这个数组由两个成员组成,第一个成员是这个状态的当前值(如上例中的myState
),第二个成员是改变这个状态值的方法,即一个专属的setState
(如上例中的setMyState
)。
During the initial render, the returned state (
state
) is the same as the value passed as the first argument (initialState
).
注意这个初始值只在初始渲染中才被赋值给对应变量,也就是只有在component第一次挂载时,渲染之前才做了一次初始化。后来更新引发的重新渲染都不会让初始值对状态产生影响。
useEffect并不能等同或替代原有的component生命周期函数,他们设计的思路完全不同。对于长期习惯使用原有生命周期的人来说,可能需要从“替换”的角度来转换写react代码的思维方式。
简单来说,钩子的设计更符合“react”这个名字。它完全是通过对数据和状态变化的检测,来“反馈”更新。
在前端程序里,我们习惯了一种我称为“事件思维”的方式,就是说发生某件事,就调用某段代码。运用钩子,就是把某些数据的变化作为事情发生的标志。
在此之前,我们回顾一下类component中几个主要的生命周期。
刚挂载:
属性或状态更新:
取消挂载:
如上可以看到componentDidUpdate是只在:
时才会被触发的。
useEffect传入的函数,则会在:
那就很明显useEffect不能简单地替代componentDidUpdate。
但在实际使用过程中,我们通常会:
如下:
class MyComponent extends React.Component {
componentDidMount() {
this.loadData();
}
componentDidUpdate(prevProps) {
if (prevProps.id !== this.props.id) {
this.loadData();
}
}
shouldComponentUpdate(nextProps) {
return nextProps.id !== this.props.id ||
nextProps.data !== this.props.data;
}
loadData() {
this.props.requestAPI(this.props.id);
}
render() {
return <div>{this.props.data}</div>;
}
}
useEffect就合并并且大大地简化了这一过程:
function MyComponent(props) {
React.useEffect(() => {
props.requestAPI(props.id);
}, [props.id, props.requestAPI);
return <div>{props.data}</div>;
}
export default React.memo(MyComponent);
上述例子中实际上是将componentDidMount和componentDidUpdate合并了。在shouldComponentUpdate中比较props.data是否变化这一步,借由React.memo来完成。注意它只做每个props值的浅比较。
那你说componentDidUpdate也许经常做compinentDidMount里会做的事情,那么componentDidMount呢?它是必须的。
虽然react大牛们已经提议了一些concurrent的方法,但react发了那么多版依旧没被加进来。所以在钩子的官方文档里,我们找到这一段:
If you pass an empty array (
[]
), the props and state as inside the effect will always have their initial values. While passing[]
as the second argument is closer to the familiarcomponentDidMount
andcomponentWillUnmount
mental model, there are usually bettersolutions to avoid re-running effects too often. Also, don’t forget that React defers runninguseEffect
until after the browser has painted, so doing extra work is less of a problem.
也就是说可以给useEffect第二个参数传一个空数组,来暂代componentDidMount。虽然官方不推荐,但现在没办法只能这么干。。。
so,上面已经说了,第二个参数是用来将某些数据变化作为效果触发的依据。那空数组,首先就防止了第二个参数为空时每次render都会触发的场景,然后每次渲染都没有数据可以比较变化,那就只有component挂载时才能被触发了。
function MyComponent() {
React.useEffect(() => {
console.log('MyComponent is mounted!');
}, []);
return null;
}
useState与useEffect不同,它不会检测数据的变化,它只接收一个参数 - 它的初始值。初始化过后,所有的状态更新,都需要我们自己调用useState所返回的 ”setState“方法来完成。
这是因为我们已经有useEffect了。getDerivedStateFromProps的效果等同于:
function MyComponent(props) {
const [intValue, setIntValue] = React.useState(props.value);
React.useEffect(() => {
setIntValue(parseInt(props.value, 10));
}, [props.value, setIntValue]);
return <div>{intValue}</div>;
}
比起getDerivedStateFromProps,这种方式还有效防止了不必要的多次计算。
componentWillUnmount是又一个非常重要常用的生命周期。我们通常用它来解绑一些DOM事件,清理一些会造成内存泄漏的东西。
这就要说到useEffect里第一个参数的回调函数,是可以返回一个函数用来做这种清洁工作的:
React.useEffect(
() => {
const subscription = props.source.subscribe();
return () => {
subscription.unsubscribe();
};
},
[props.source],
);
以上是官方文档中的一个例子,它等同于:
class MyComponent extends React.Component {
componentDidMount() {
this.props.source.subscribe();
}
componentDidUpdate(prevProps) {
if (prevProps.source !== this.props.source) {
prevProps.source.unsubscribe();
this.props.source.subscribe();
}
}
componentWillUnmount() {
this.props.source.unsubscribe();
}
render() {
// ...
}
}
简单来说,这个返回的清洁函数,会在下一次该效果被触发时首先被调用。