欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

'React/RCTBundleURLProvider.h' file not found错误的解决办法

程序员文章站 2022-11-20 14:57:13
'react/rctbundleurlprovider.h' file not found错误的解决办法 新建rn项目时在ios端用xcode跑时有时会遇到 'react/...

'react/rctbundleurlprovider.h' file not found错误的解决办法

'React/RCTBundleURLProvider.h' file not found错误的解决办法

新建rn项目时在ios端用xcode跑时有时会遇到 'react/rctbundleurlprovider.h' file not found 错误,遇到这种错误一般有一下几种情况:

1. 没有执行 npm install 命令,没有安装依赖,此时执行 npm install 安装依赖即可.

2. 依赖已经安装,但还是会报这个错,此时将项目下node_modules文件夹删除,再次执行 npm install 命令安装依赖即可.