知识点
1. React生命周期
- Mounting: 已插入真实DOM
- Updating: 正在被重新渲染
- Unmounting: 已移出真实DOM
周期前后触发的函数
- componentWillMount()
- componentDidMount()
- componentWillUpdate(object nextProps,object nextState)
- componentDidUpdate(object preProps,object preState)
- componentWillUnmount()
React特殊状态的处理函数
- componentWillReceiveProps(object nextProps):已加载组件收到新的参数时调用
- shouldComponentUpdate(object nextProps, object nextState):组件判断是否重新渲染时调用
2. 坑点
- 每次render的return中,只能有一个顶级标签.