学习
React
免不了对组件生命周期的学习,咱们应该掌握最新生命周期,学以至用,以达到性能优化的目的。html
React Version: 16.3
react
了解最新版的React
生命周期,知道其特性(如:异步渲染),有助于开发高性能React
程序。性能优化
高清大图异步
componentWillMount
componentWillReceiveProps
componentWillUpdate
static getDerivedStateFromProps(nextProps, prevState)
getSnapshotBeforeUpdate(prevProps, prevState)
componentDidUpdate(prevProps, prevState, snapshot)
In order to support async rendering
但愿感兴趣的小伙伴儿能够观看官网,深刻了解和学习。async
官网文档: https://reactjs.org/docs/react-component.html#static-getderivedstatefromprops性能