ReactDOM.unmountComponentAtNode(document.getElementById('demo'))
constructor 调用构造器
componentWillMount 组件将要挂载(用 render 挂载,所以 render 在下边)
render 初始化渲染,状态更新以后
componentDidMount 组件挂载完毕(render之后调用)
componentWillUnmount 组件将要被卸载时
shouldComponentUpdate 组件是否应该被更新
return true
componentWillUpdate 组件将要被更新
componentDidUpdate(preProps, preState,snapshotValue) 组件更新完毕的钩子
componentWillRecevieProps(props) 组件将要接受新的props(父组件调用render ,子组件就会调用此钩子)
forceUpdate 方法:不更改任何状态中的数据,强制更新一下