我是React Native的新手...只想问一下问题,我的应用程序在导航回其他页面时不会触发componentWillMount和componentDidMount,
我使用react-native-router-flux
作为导航器
componentWillMount() {
this.props.searchRequest();
}
exp:我有主屏幕和类别,从家里我想去类别:在类别我有那个代码,但有时当我回到previouse页面(主屏幕),然后再回到类别componentWillMount有时没有触发,
我认为我的类别场景没有卸载
答案 0 :(得分:0)
我们可以用
检测道具变化componentWillReceiveProps()
但是我们需要设置状态来容纳新的道具值,