欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

React Native 红屏之Could not connect to development server.

发布时间:2025/5/22 编程问答 34 豆豆
生活随笔 收集整理的这篇文章主要介绍了 React Native 红屏之Could not connect to development server. 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

React Native 是目前最火的开发框架,其他不说了,上Bug。

 

按照   React Native iOS环境搭建 高级版   

在mac上  搭建 React Native  环境,运行 项目 若出现了如下情况。 

模拟器上  显示

 

 

 

Xcode 打印

2016-02-16 17:01:49.806 [info][tid:com.facebook.React.JavaScript][RCTJSCProfiler.m:63] JSC profiler is not supported.

2016-02-16 17:01:50.089 [fatal][tid:main] Could not connect to development server.

 

Ensure the following:

- Node server is running and available on the same network - run 'npm start' from react-native root

- Node server URL is correctly set in AppDelegate

 

URL: http://localhost:8081/index.ios.bundle?platform=ios&dev=true

请将项目中 AppDelegate.m 中的

 

 

 

[objc] view plain copy  print?
  • jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];  

  •  


     

    替换为

     

    [objc] view plain copy  print?
  • jsCodeLocation = [NSURL URLWithString:@"http://127.0.0.1:8081/index.ios.bundle?platform=ios&dev=true"];  


  •  

     

    原因之一:做本地局域网开发环境,大部分都会做服务器映射处理,localhost 被指向特定的IP 而不是本机的127.0.0.1, 就会出现这样的问题。

     

    转载于:https://www.cnblogs.com/tangyuanby2/p/5306519.html

    总结

    以上是生活随笔为你收集整理的React Native 红屏之Could not connect to development server.的全部内容,希望文章能够帮你解决所遇到的问题。

    如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。