美文网首页
react-native component methods

react-native component methods

作者: wenki | 来源:发表于2016-04-26 19:16 被阅读0次

整理: Component Methods

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

componentDidMount(){
      // your code here
}

componentWillUnmount(){
      // your code here     
}

总结: Methods 执行顺序

componentWillMount -> componentDidMount -> componentWillUnmount

相关文章

网友评论

      本文标题:react-native component methods

      本文链接:https://www.haomeiwen.com/subject/tmzqrttx.html