React 生命周期函数
一、组件挂载阶段(Mounting)
1、componentDidMount()
在组件创建好 dom 元素后,挂载进页面时调用
二、组件更新阶段(Updating)
1、static getDerivedStateFromProps()
2、shouldComponentUpdate()
3、componentDidUpdate()
三、组件卸载阶段(Unmounting)
1、componentWillUnmount()
1、componentDidMount()
在组件创建好 dom 元素后,挂载进页面时调用
1、static getDerivedStateFromProps()
2、shouldComponentUpdate()
3、componentDidUpdate()
1、componentWillUnmount()