Initialize / Construction
getDefaultProps() (React.createClass) or MyComponent.defaultProps (ES6 class)
getInitialState() (React.createClass) or this.state = ... (ES6 constructor)
componentWillMount()
render()
Children initialization & life cycle kickoff
componentDidMount()
componentWillReceiveProps()
shouldComponentUpdate()
componentWillUpdate()
render()
Children Life cycle methods
componentDidUpdate()
By having an identifier based on the data content instead of order, we can help optimize the Component rendering.
本书主要介绍了react声明周期内相关知识点,但是介绍的是比较深层次的,比较细化的一些东西。
英文的原因,有写地方没有太明白,有时间再看一次。