react 单项数据流模式不同于vue的模式,
生命周期有三(
- Mounting:已插入真实 DOM
- Updating:正在被重新渲染
- Unmounting:已移出真实 DOM
)种状态。
五种处理函数
- componentWillMount()
- componentDidMount()
- componentWillUpdate(object nextProps, object nextState)
- componentDidUpdate(object prevProps, object prevState)
- componentWillUnmount()
1、严格的的数据类型
2、数据值得初始状态
3、数据得取值方式dom节点获取
4、ReactDOM.render()方法
5、React.createClass组件