美文网首页
2019-01-03 生命周期

2019-01-03 生命周期

作者: ksh14 | 来源:发表于2019-01-03 20:55 被阅读0次

1.生命周期分为:

a)组件加载之前,组件加载完成(Mounting)

b)组件更新数据(Updating)

c)组件销毁(Unmounting)

在这过程中,会触发一系列的方法。

2.在组件加载的时候触发的函数:

constructor, componentWillMount, render, componentDidMount

3.组件更新数据的时候触发的函数:

shouldComponentUpdate, componentWillUpdate, render, componentDidUpdate

4.你在父组件里改变props传值的时候触发:

componentWillReceiveProps

5.组件销毁时触发:

componentWillUnmount

相关文章

网友评论

      本文标题:2019-01-03 生命周期

      本文链接:https://www.haomeiwen.com/subject/oqbfrqtx.html