React组件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React组件相关的知识,希望对你有一定的参考价值。
React组件
1. 核心概念:
props
state
props
getDefaultProps
state
状态机
setState 触发组件自动重新renderUI
getinitialState
划分props和state的原则:让组件尽可能的少状态。
2. 组件生命周期
装载组件
componentWillMount 只会在装载之前调用一次,在render之前调用
装载完成组件
componentDidMount 装载完成之后,在render之后
更新组件状态
• componentWillReceiveProps
• shouldComponentUpdate
• componentWillUpdate
• componentDidUpdate
卸载(删除)组件
componentWillUnmount
以上是关于React组件的主要内容,如果未能解决你的问题,请参考以下文章