react 生命周期

余生长醉 提交于 2020-03-18 19:26:41

生命周期详见 react v16.12 官网

挂载

当组件实例被创建并插入 DOM 中时,其生命周期调用顺序如下:

  • constructor()
  • render()
  • componentDidMount()

componentWillMount() 即将过时,不要使用

更新

当组件的 props 或 state 发生变化时会触发更新。组件更新的生命周期调用顺序如下:

  • shouldComponentUpdate()
  • render()
  • componentDidUpdate()

componentWillUpdate() 与 componentWillReceiveProps() 即将过时,不要使用。

卸载

当组件从 DOM 中移除时会调用如下方法:

  • componentWillUnmount()

错误处理

当渲染过程,生命周期,或子组件的构造函数中抛出错误时,会调用如下方法:

  • componentDidCatch()
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!