首页 > 代码库 > React组件
React组件
React组件
1. 核心概念:
props
state
props
getDefaultProps
state
状态机
setState 触发组件自动重新renderUI
getinitialState
划分props和state的原则:让组件尽可能的少状态。
2. 组件生命周期
装载组件
componentWillMount 只会在装载之前调用一次,在render之前调用
装载完成组件
componentDidMount 装载完成之后,在render之后
更新组件状态
• componentWillReceiveProps
• shouldComponentUpdate
• componentWillUpdate
• componentDidUpdate
卸载(删除)组件
componentWillUnmount
React组件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。