整理: Component Methods
// 即將掛載
componentWillMount(){
// your code here
}
componentDidMount(){
// your code here
}
componentWillUnmount(){
// your code here
}
總結(jié): Methods 執(zhí)行順序
componentWillMount -> componentDidMount -> componentWillUnmount