<react-native>从prebundled文件加载,我想从端口加载:8081,id怎么做?

时间:2017-04-28 02:10:46

标签: react-native

react-native issue

项目重新加载,在屏幕顶部,它显示从预绑定文件加载,我想从端口加载,我该怎么办?提前致谢! 我尝试编辑从调试到发布的方案,但它似乎没什么用处!

1 个答案:

答案 0 :(得分:0)

对于iOS,修改AppDelegate.m并将jsCodeLocation修复为类似的内容

#ifdef DEBUG jsCodeLocation = [NSURL URLWithString:@"http://192.168.1.10.nip.io:8081/index.ios.bundle?platform=ios&dev=true"]; #else jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; #endif

192.168.1.10.nip.io:8081替换为您的打包者地址。