react 的生命周期函数
Posted guangzhou11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 的生命周期函数相关的知识,希望对你有一定的参考价值。
是指在某一时刻组件自动执行 的函数
初始化:
设置props和state
mounting:
componentWillMount 在组件即将被挂载到页面的时候自动执行
render 组件在页面上进行挂载
componentDidMount 在组件被挂载到页面的时候后自动执行
updation:组件更新
props
=>componentWillPeceiveProps=>shouldComponentUpdate=> componentWillUpdate=>render=> componentDidUpdate
state
=>shouldComponentUpdate=> componentWillUpdate=>render=> componentDidUpdate
unmounting:
即将被从页面去除组件的时候
以上是关于react 的生命周期函数的主要内容,如果未能解决你的问题,请参考以下文章