React Native 入坑初体验

1、按照官方文档,新建项目,执行 react-native run-iOS 报错 react/rctbundleurlprovider.h not found


6826F488-A3BD-4F1E-8D2E-DBF384A63F1B.png

解决方法:删除项目中的 node_modules 文件夹
执行命令 npm install

2、上面错误解决之后,可能会遇到 boost/iterator/iterator_adaptor.hpp’ file not found
解决方法:参考 http://vanessa.b3log.org/articles/2017/06/12/1497235254333.html
.rncache 文件路径在 ~/.rncache
1、删除 .rncache 后重新下载,或手动下载后放入 .rncache 中
(.rncache下载地址https://pan.baidu.com/s/1geLl5tT)
2、把以上文件解压后放入 node_modules/react-native/third-party 下
3、重新运行

未完待续~~~~

你可能感兴趣的:(React Native 入坑初体验)