react生命周期

70 阅读1分钟

初始化阶段

constructor()

getDerivedStateForProps()

render()

componentDidMount()

更新阶段

getDerivedStateForProps()

shouldComponentUpdate()

render()

getSnapshotBeforeUpdate()

componentDidUpdate()

卸载阶段

componentWillUnmount()

参考文档:

React的生命周期

React生命周期详解

React16版本生命周期详解