(1)初始化阶段:
getDefaultProps:获取实例的默认属性
static propTypes 设置属性的类型
componentWillMount:组件即将首次被装载、渲染到页面上
render:组件在这里生成虚拟的 DOM 节点
componentDidMount:组件真正在被首次装载之后
(2)运行中状态:
componentWillReceiveProps:在数据更新页面需要重新渲染的时候,组件将要接收到属性的时候调用,
shouldComponentUpdate:组件接受到新属性或者新状态的时候(可以返回 false,接收数据后不更新,阻止 render 调用,后面的函数不会被继续执行了)
componentWillUpdate:组件即将更新不能修改属性和状态
render:组件重新描绘
componentDidUpdate:组件已经更新
(3)销毁阶段:
componentWillUnmount:组件即将销毁
相关文章
- 02-14[react] Mern和Yeoman脚手架有什么区别?
- 02-14AChartEngine应用之LineChart(模拟动态生命特征值图)
- 02-14react写上传图片遇到的问题
- 02-14kubernetes-3 k8s集群中的生命周期
- 02-14009 create-react-app 安装并启动
- 02-14React-Native
- 02-14react入门之使用 create-react-app 快速构建 React 开发环境
- 02-14[React Native] Disable and Ignore Yellow Box Warnings in React Native
- 02-14「Vue」vue生命周期
- 02-14Spring中bean的生命周期(最详细)