React V16.3生命周期:The Component Lifecycle Flowchart

前端之家收集整理的这篇文章主要介绍了React V16.3生命周期:The Component Lifecycle Flowchart前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
学习 React免不了对组件生命周期的学习,我们应该掌握最新生命周期,学以致用,以达到性能优化的目的。

The Component Lifecycle

React Version: 16.3

1 生命周期可视化

高清大图--欢迎转载

2 简要总结:

  1. componentWillMount
  2. componentWillReceiveProps
  3. componentWillUpdate
  1. static getDerivedStateFromProps(nextProps,prevState)
  2. getSnapshotBeforeUpdate(prevProps,prevState)
  1. componentDidUpdate(prevProps,prevState,snapshot)
  • 更改原因:

官网说是为了实现将来新版本的异步渲染In order to support async rendering

最后

如有兴趣深入了解的同学,可以到官网了解最新资讯。

官网文档: https://reactjs.org/docs/react-component.html#static-getderivedstatefromprops
原文链接:https://www.f2er.com/react/301615.html

猜你在找的React相关文章