生命周期详见 react v16.12 官网
挂载
当组件实例被创建并插入 DOM 中时,其生命周期调用顺序如下:
- constructor()
- render()
- componentDidMount()
componentWillMount() 即将过时,不要使用
更新
当组件的 props 或 state 发生变化时会触发更新。组件更新的生命周期调用顺序如下:
- shouldComponentUpdate()
- render()
- componentDidUpdate()
componentWillUpdate() 与 componentWillReceiveProps() 即将过时,不要使用。
卸载
当组件从 DOM 中移除时会调用如下方法:
- componentWillUnmount()
错误处理
当渲染过程,生命周期,或子组件的构造函数中抛出错误时,会调用如下方法:
- componentDidCatch()
来源:https://www.cnblogs.com/everlose/p/12519382.html