有关React生命周期:

1、组件生命周期的执行次数是什么样子的???

   只执行一次: constructor、componentWillMount、componentDidMount

  执行多次:render 、子组件的componentWillReceiveProps、componentWillUpdate、componentDidUpdate

  有条件的执行:componentWillUnmount(页面离开,组件销毁时)

  不执行的:根组件(ReactDOM.render在DOM上的组件)的componentWillReceiveProps(因为压根没有父组件给传递props)

 

2、组件的生命周期执行顺序是什么样子的???

  假设组件嵌套关系是  App里有parent组件,parent组件有child组件。

     如果不涉及到setState更新,第一次渲染的顺序如下:

App:   constructor --> componentWillMount -->  render --> 
parent: constructor --> componentWillMount -->  render --> 
child:    constructor --> componentWillMount -->  render  --> 
componentDidMount (child) -->  componentDidMount (parent) --> componentDidMount (App)

 

   这时候触发App的setState事件

App:   componentWillUpdate --> render --> 
parent: componentWillReceiveProps --> componentWillUpdate --> render --> 
child:    componentWillReceiveProps --> componentWillUpdate --> render -->
componentDidUpdate (child) -->  componentDidUpdate (parent) --> componentDidUpdate (App)

 

那如果是触发parent的setState呢?

parent: componentWillUpdate --> render --> 
child:     componentWillReceiveProps --> componentWillUpdate --> render --> 
componentDidUpdate (child) -->  componentDidUpdate (parent) 

 

那如果是只是触发了child组件自身的setState呢?

child: componentWillUpdate --> render -->  componentDidUpdate (child)

 

结论

1、如图:完成前的顺序是从根部到子部,完成时时从子部到根部。(类似于事件机制)

2、第一级别的组件setState是不能触发其父组件的生命周期更新函数,只能触发更低一级别的生命周期更新函数

 

总结起来就如下图:

 

 

 3、待续。

 

版权声明:本文为faith3原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/faith3/p/9216165.html