react-native component methods

整理: Component Methods

// 即将挂载
componentWillMount(){
      // your code here
}

componentDidMount(){
      // your code here
}

componentWillUnmount(){
      // your code here     
}

总结: Methods 执行顺序

componentWillMount -> componentDidMount -> componentWillUnmount

你可能感兴趣的:(react-native component methods)