美文网首页
无标题文章

无标题文章

作者: 此爱天下无双 | 来源:发表于2018-10-29 10:55 被阅读0次

    1.React Native error: bundling failed: Error: Unable to resolve module AccessibilityInfo from…

    解决办法:https://blog.csdn.net/pcaxb/article/details/82258292

    2. [endif]Unable to load script from assets 'index.android.bundle'出错

    言归正传,当你运行react native程序的时候出现这个错误 ,如果您使用Windows,请按以下方式运行命令,或者如果出现错误“无法找到条目文件index.android.js”,那么我这一招能救你

    第一步(创建缺失的目录):mkdir android\app\src\main\assets

    第二步(在创建好的目录添加程序需要的文件):react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res

    第三步:react-native run-android

    3.

    当出现如下报错是模拟器无法连接到本地服务器,原因的系统没有启动node服务器,需要自己打开

    解决方法:运行命令npm start

    4.run工程后出现如图500的报错,

    解决办法:在当前项目的路径下分别运行以下命令:npm uninstall babel-preset-react-native

    如果是yarn 则运行:yarn remove babel-preset-react-native

    最后重新运行

    5.终端运行报错

    无法运行

    解决方法:进入项目文件,并运行“npm install”,安装npm。

    相关文章

      网友评论

          本文标题:无标题文章

          本文链接:https://www.haomeiwen.com/subject/dlxbtqtx.html