使用React-native 遇到的问题

a.出现“RCTBundleURLProvider.h” file not found - AppDelegate.m错误

1.首先找到node mobules 并删除;

2.cd 到项目目录

3. npm install  一切完成下载之后,进入到下一步;

4.react-native upgrade 

这样应该能解决你的问题,当然别忘记clean Xcode 

b.出现“no bundle URL present” Make sure you're running a packager server or have included a .jsbundle file in your application bundle.错误

法一:1. npm install

2.react-native run-ios

不行用法二:关闭模拟器跟终端,运行react-native upgrade

但是在upgrade之后,如果加载的图片是http:// 的  需要在Info.plist中设置App Transport Security Setting;

并且在终端运行react-native link,此命令给所有已安装的native插件链接原生依赖;还需要关闭模拟器,重新运行、、、

c.Failure to call AppRegistry.registerComponent

您可能已经为另一个应用程序运行另一个React Native打包程序服务器,或者AppDelegate.m中的应用程序moduleName名称和您的index.js不一样。

尝试关闭所有终端窗口,仔细检查moduleName的值并再次运行该项目。

你可能感兴趣的:(使用React-native 遇到的问题)