整理: Component Methods
// 即将挂载
componentWillMount(){
// your code here
}
componentDidMount(){
// your code here
}
componentWillUnmount(){
// your code here
}
总结: Methods 执行顺序
componentWillMount -> componentDidMount -> componentWillUnmount
网友评论