美文网首页
react native 初体验

react native 初体验

作者: 读书有毒不中毒 | 来源:发表于2022-02-24 08:06 被阅读0次

    1.cmd + d 开启菜单
    2.cmd + d 再打开 debug 模式 右上角氵--> 更多工具 --> 开发者工具

    1. 真机运行
      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];
    RCTBundleURLProvider Simulator Screen Shot - iPhone 11 - 2022-02-24 at 00.07.42.png

    相关文章

      网友评论

          本文标题:react native 初体验

          本文链接:https://www.haomeiwen.com/subject/rrtrzltx.html