组件的生命周期分为三个状态
Mounting: 已插入真实DOMUpdateing: 正在被重新渲染Unmounting: 已移出真实DOM
React 为每个状态都提供了两种处理函数,即函数在进入状态之前调用(will函数),函数在进入状态之后调用(did函数),三种状态共计五中处理函数。
componentWillMount()componentDidMount()componentWillUpdate(object nextProps, object nextState)componentDidUpdate(object prevProps, object prevState)componentWillUnmount()
此外,React还提供了两种特殊状态的处理函数
componentWillReceiveProps(object nextProps): 已加载组件收到新的参数时调用shouldComponentUpdate(object nextProps, object nextState): 组件判断是否重新渲染时调用