其他分享
首页 > 其他分享> > reactnative 访问本地服务器遇到错误

reactnative 访问本地服务器遇到错误

作者:互联网

reactnative 访问本地服务器遇到错误

显示如下错误:
在这里插入图片描述

问题所在

react-native运行时的node服务器跑在10.0.2.2 的ip上面,所以改成http://10.0.2.2:xxxx,在此reload便可以了

getTest:"http://127.0.0.1:3000/user/info"
//注意域名的更改  端口号不要改
getTest:"http://10.0.2.2:3000/user/info"

标签:10.0,http,user,3000,本地,服务器,2.2,reactnative
来源: https://blog.csdn.net/qq_41402809/article/details/111732128