我正在使用yarn ios
和 Expo 在Iphone模拟器中运行应用程序。我的apiMiddleware中有一个请求,它尝试连接到在http://localhost:8080上运行的后端服务器。
但是,尝试同时连接 localhost:8080 和 192.168.0.3:8080 (其中 192.168.0.3 是我)后,出现此错误Mac IPv4地址:
Request failed with status code 404
- node_modules/axios-mock-adapter/src/utils.js:117:24 in createErrorResponse
- node_modules/axios-mock-adapter/src/utils.js:98:8 in settle
Chrome浏览器和Insomnia均可从 localhost:8080 或 192.168.0.3:8080 发送请求并获取响应。
我经历了几篇文章,解决方案是将localhost更改为ip地址,这对我不起作用。