初始化开始
(getDefultProps->getInitialState->componentWillMount->*render->componentDidMount)此为第一阶段
组件运行中1->(state引发状态的变化,类似于ng中的检查check)->shouldComponentUpdate->为true时候触发->componentWillUpdate->render->componentDidUpdate
组件运行中2->props的改变组件之间的调用->shouldComponentUpdate
组件运行中3->Unmount->componentWillUnmount->end