React Native main.jsbundle生成方法

前端之家收集整理的这篇文章主要介绍了React Native main.jsbundle生成方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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

步骤:

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

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

curl http://localhost:8081/index.ios.bundle -o main.jsbundle

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

jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];

取消注释下面这一行

// jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];

4.将真机联上电脑,选择信任,然后在Xcode中选择使用其进行调试,等待编译完成即可运行!

原文链接:https://www.f2er.com/react/306629.html

猜你在找的React相关文章