Bootstrap

componentReceiveProps&react class生命周期

componentReceiveProps并不是有props的变化触发,而是由父组件的更新触发的

父组件导致组件重新渲染,即使props没有更改,也会调用componentReceiveProps这个方法;如果只想处理更改,确保当前值与变更值比较--官方        

constructor=》componentWillMount=》render=》componentDidMount(初始化,父组件)

组件更新

componentReceiveProps(父组件触发)=》shouleComponentUpdate(组件自身触发)=》componUpdate=》render=》ComponentDidUpdate

组件卸载

componentWillUnMount

;