我安装了带有Expo的HTC M8s,我想测试用React Native编写的应用程序。我在控制台中运行我的应用程序,扫描QR码并尝试从我的智能手机连接到我的应用程序 - 不幸的是,我看到一个错误,说它无法加载exp:// myaddress:port。
我正在使用Windows 10,我的电脑和智能手机都连接到同一个WiFi网络。
这是ipconfig
命令的结果:
Ethernet adapter Ethernet:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . : myhostname.net
Wireless LAN adapter Wi-Fi:
Connection-specific DNS Suffix . : myhostname.guest
Link-local IPv6 Address . . . . . : fe80::8136:d112:d190:5fd8%17
IPv4 Address. . . . . . . . . . . : 10.168.4.171
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 10.168.4.1
Ethernet adapter Ethernet 6:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Wireless LAN adapter Local Area Connection* 1:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Ethernet adapter Ethernet 3:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Ethernet adapter Bluetooth Network Connection:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Tunnel adapter Local Area Connection* 11:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::1c40:2198:f557:fb54%11
Default Gateway . . . . . . . . . :
这是运行npm start
:
(...) Or enter this address in the Expo app's search bar:
exp://10.168.4.171:19000
很遗憾,我无法从智能手机中安装的Expo应用访问我的应用。
我已经尝试过:
我仍然无法通过Expo应用程序运行我的应用程序。然而,在我的电脑上安装Expo应用程序解决了这个问题 - 它显示了与控制台上的QR码不同的QR码,我可以运行我的本机应用程序,但我想从智能手机的Expo应用程序运行我的应用程序。
编辑: 我尝试使用Win10的另一台PC。安装了create-react-native-app,运行它,并通过WiFi完美地工作。
答案 0 :(得分:0)
我不确定你是否已经找到答案,但我希望这可以帮助那些面临同样情况的人。罪魁祸首是网络适配器。有一种称为网络适配器的接口度量,接口度量越低,适配器的优先级越高。 我是从windows透视来写这个答案的。正如您所提到的,您的电脑和手机连接到同一个Wi-Fi网络,您无法访问移动设备上的应用程序的原因是因为您启动服务器时获得的本地IP未分配给你想要的适配器。
答案 1 :(得分:0)
来源:https://github.com/react-community/create-react-native-app/issues/60#issuecomment-317104728 我阅读了Himujjal's解决方案,该解决方案适用于我: 以下步骤肯定会有所帮助。我遇到了同样的问题,并且能够在Windows 10 OS中解决它。我在计算机上安装了Virtual Box,但无法在android expo客户端中运行CRNA。所以,
尝试在Expo上重新启动您的应用。它必须现在可以工作!