react 生命周期
Posted mufc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 生命周期相关的知识,希望对你有一定的参考价值。
React 生命周期分为三种状态 1. 初始化 2.更新 3.销毁;
初始化:getDefaultProps()、getInitialState()、componentWillMount()、render()、componentDidMount()
更新:componentWillReceiveProps(nextProps)、shouldComponentUpdate(nextProps、nextState)、componentWillUpdate(nextProps、nextState)、render()、componentDidMount()
销毁:componentWillUnmount()
以上是关于react 生命周期的主要内容,如果未能解决你的问题,请参考以下文章