1.cmd + d 开启菜单
2.cmd + d 再打开 debug 模式 右上角氵--> 更多工具 --> 开发者工具
- 真机运行
RCTWebSocketExecutor --》 改变localhost 改成 电脑ip
NSString *host = [[_bridge bundleURL] host] ?: @"localhost"; 改成 NSString *host = @"电脑ip"
4.模拟器运行
RCTInspectorDevServerHelper --》 改变localhost 改成 电脑ip
改return [NSString stringWithFormat:@"%@:%@", host, port]; 为
return [NSString stringWithFormat:@"%@:%@", @"电脑ip", port];