React Native iOS 之Could not connect to development server.

本文介绍了解决ReactNative iOS开发过程中遇到的Could not connect to development server问题的方法。主要原因是localhost未正确指向本地地址127.0.0.1,通过修改AppDelegate.m文件中的jsCodeLocation设置即可修复。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

React Native iOS 之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 中的

jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];


替换为

jsCodeLocation = [NSURL URLWithString:@"http://127.0.0.1:8081/index.ios.bundle?platform=ios&dev=true"];



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


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值