React Native Router Flux 没有传递道具
React Native Router Flux not passing props
Environment:
"react-native": "0.57.1",
"react-native-router-flux": "^4.0.5",
当通过 Actionskey 将道具从一个屏幕传递到另一个屏幕时,它给我一个错误,我调用的道具是未定义的
这个问题我找了很多,都没找到
屏幕 1:
<View>
<Button
title="click me"
onPress={() => Actions.Screen2({id:5})}
/>
</View>
屏幕 2:
<View>
<Text>
{this.props.id}
</Text>
</View>
react-native-router-flux 与最近的 React native 版本有很多问题,还建议使用 react-navigation 作为路由方法。
Environment:
"react-native": "0.57.1",
"react-native-router-flux": "^4.0.5",
当通过 Actionskey 将道具从一个屏幕传递到另一个屏幕时,它给我一个错误,我调用的道具是未定义的
这个问题我找了很多,都没找到
屏幕 1:
<View>
<Button
title="click me"
onPress={() => Actions.Screen2({id:5})}
/>
</View>
屏幕 2:
<View>
<Text>
{this.props.id}
</Text>
</View>
react-native-router-flux 与最近的 React native 版本有很多问题,还建议使用 react-navigation 作为路由方法。