react组件的生命周期机制

Posted marvelousone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react组件的生命周期机制相关的知识,希望对你有一定的参考价值。

组件更新 (组件状态改变)新一轮render
shouldComponentUpdate(newPros,newState)
componentWillUpdate
componentDidUpdate


组件注册
getDefaultProps
getInitialState
componentWillMount
render()
componentDidMount

组件消亡
ReactDOM.unmountComponentAtNode(destination) 去调用组件消亡生命周期函数
componentWillUnmount 定时器等一些收尾工作在这里取消掉

更改state
componentWillReceiveProps(newProps)
shouComponentUpdate()
componentWillUpdate()
componentDidUpdate()

 

以上是关于react组件的生命周期机制的主要内容,如果未能解决你的问题,请参考以下文章

react生命周期

React组件的生命周期函数

react 生命周期

[RN] React Native 中组件的生命周期

React-Native从入门到深入--组件生命周期

react 组件的生命周期