我获得了成功的构建,但是react原生保存了我的根组件在错误的位置。我的项目在C://Projects/MobileApp中,我在那里运行:react-native-run-android。,但我得到这个错误:开发服务器返回响应错误代码500
Unable to resolve module build from C://Projects/MobileApp/index.android.js
在componentDidMount()之后,在react原生中,当你导航到其他屏幕并返回到你的组件(屏幕)时,它不会再次调用。因此react原生导航建议通过以下JS代码来实现: componentDidMount() {} 但是现在我得到了这个错误:undefined is not an object (evaluating 'this.props.navigation.addListener'),因为我在选项卡组件(嵌套)中使用了我的组件。