组件生命周期#
每一个组件都有几个你可以重写以让代码在处理环节的特定时期运行的“生命周期方法”。方法中带有前缀 will 的在特定环节之前被调用,而带有前缀 did 的方法则会在特定环节之后被调用。
装载(Mounting)#
这些方法会在组件实例被创建和插入 DOM 中时被调用:
constructor()
componentWillMount()
render()
componentDidMount()
更新(Updating)#
属性或状态的改变会触发一次更新。当一个组件在被重新渲染时,这些方法将会被调用:
componentWillReceiveProps()
shouldComponentUpdate()
componentWillUpdate()
render()
componentDidUpdate()
卸载(Unmounting)#
当一个组件被从 DOM 中移除时,该方法被调用:
componentWillUnmount()
其他 API#
每一个组件还提供了其他的 API:
setState()
forceUpdate()