React Native 学习中遇到的问题记录

前端之家收集整理的这篇文章主要介绍了React Native 学习中遇到的问题记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  • Android4.4系统,在开发调试时出现
adb -s 7SLZIROZLB95MZTW reverse tcp:8081 tcp:8081

error: closed

不用担心,在正式发布后Android4.4系统是可以运行的,建议在测试开发的时候使用Android5.0以上系统

  • Could not get BatchedBridge

红屏问题"Could not get BatchedBridge,make sure your bundle is packaged correctly"

解决方法: 手动执行命令:

react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/

正常执行完assets目录中会多出几个文件,即可解决这个问题。

如果没有assets目录,手动添加下,再执行上述命令

  • could not connetc development server

这个是由于本地server没有启动,一般在运行react-native run-android / run-ios 时会自动启动

如果没有启动,我们可以执行 react-native start 即可,app reload

原文链接:https://www.f2er.com/react/304056.html

猜你在找的React相关文章