RN-生成 main.jsbundle

main.jsbundle生成方法

最近在玩React Native,刚开始是在模拟器里运行,后想把它装到真机上,这时localhost上的jsbundle就无法访问了。

这种情况下可以使用main.jsbundle。

步骤:

1.在React Native项目根目录下运行 npm start

2.使用curl命令生成 main.jsbundle

curl http://当前电脑可用的网络ip地址,注意不要写localhost,因为可能取到的ip不是本地有效的ip地址:8081/index.ios.bundle -o main.jsbundle
3.成功后可以在当前用户电脑根目录下发现这个新生成的jsbundle文件

4.将生成的jsbundle文件导入到当前的项目中

5.在AppDelegate.m中选择使用main.jsbundle注释掉

jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];
取消注释下面这一行

// jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
6.将真机连上电脑,选择信任,然后在Xcode中选择使用其进行调试,等待编译完成即可运行!

你可能感兴趣的:(RN-生成 main.jsbundle)