标签:should next default one 状态 tst react 初始化 rop
React 生命周期分为三种状态 1. 初始化 2.更新 3.销毁;
初始化:getDefaultProps()、getInitialState()、componentWillMount()、render()、componentDidMount()
更新:componentWillReceiveProps(nextProps)、shouldComponentUpdate(nextProps、nextState)、componentWillUpdate(nextProps、nextState)、render()、componentDidMount()
销毁:componentWillUnmount()
标签:should next default one 状态 tst react 初始化 rop
原文地址:https://www.cnblogs.com/mufc/p/11236899.html