项目重新加载,在屏幕顶部,它显示从预绑定文件加载,我想从端口加载,我该怎么办?提前致谢! 我尝试编辑从调试到发布的方案,但它似乎没什么用处!
答案 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
替换为您的打包者地址。