react生命周期知识点

Posted mahmud

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react生命周期知识点相关的知识,希望对你有一定的参考价值。

                           react生命周期知识点

一个React组件的生命周期分为三个部分:实例化、存在期和销毁时。

实例化

组件在客户端被实例化,第一次被创建时,以下方法依次被调用:

1、getDefaultProps
2、getInitialState
3、componentWillMount
4、render
5、componentDidMount

当组件在服务端被实例化,首次被创建时,以下方法依次被调用:

1、getDefaultProps
2、getInitialState
3、componentWillMount
4、render

技术分享图片

 

以上是关于react生命周期知识点的主要内容,如果未能解决你的问题,请参考以下文章

P18:React高级-生命周期 Mounting 阶段讲解

React----组件生命周期知识点整理

React之生命周期函数

ReactReact入门--生命周期

React生命周期钩子

React组件的生命周期