弹出导航并再次导航后,React Native componentWillMount / componentDidMount不会被触发

时间:2017-03-20 05:03:04

标签: react-native react-native-router-flux

我是React Native的新手...只想问一下问题,我的应用程序在导航回其他页面时不会触发componentWillMount和componentDidMount, 我使用react-native-router-flux作为导航器

componentWillMount() {
 this.props.searchRequest();
}
exp:我有主屏幕和类别,从家里我想去类别:在类别我有那个代码,但有时当我回到previouse页面(主屏幕),然后再回到类别componentWillMount有时没有触发,

我认为我的类别场景没有卸载

1 个答案:

答案 0 :(得分:0)

我们可以用

检测道具变化
  

componentWillReceiveProps()

但是我们需要设置状态来容纳新的道具值,

相关问题