React生命周期 新vs老

老版本

挂载时

constructor()

componentWillMount()

render()

componentDidMount()

更新时

componentWillReceiveProps()

shouldComponentUpdate()

componentWillUpdate()

render()

componentDidUpdate()

卸载时

componentWillUnmount()

新版本(16.3开始)

挂载时

constructor()

static getDerivedStateFromProps()

render()

componentDidmount()

更新时

static getDerivedStateFromProps()

shouldComponetUpdate()

render()

getSnapshotBeforeUpdate()

componentDidUpdate()

卸载时

componentWilUnmount()

猜你喜欢

转载自blog.csdn.net/weixin_48352984/article/details/127130436
今日推荐