RN生命周期
2021-03-31 20:56:39 3 举报
RN生命周期
作者其他创作
大纲/内容
是
componentDidMount() 加载完毕
初始化props:super(props)初始化state:this.state={}绑定function:this.xxx=this.xxx.bind(this)
开始
shouldComponentUpdate() 是否刷新
setState({ }) 属性改变
props变化
卸载组件(Unmount)
render() 渲染数据
constructor数据初始化
componentWillReceiveProps(nextProps)
componentWillMount() 即将加载
结束运行
componentWillUpdate() 将要刷新
componentDidUpdate() 刷新完毕
否
componentWillUnmount()
正常运行
render() 渲染视图
0 条评论
下一页
为你推荐
查看更多