浏览由 pc 的 localhost 运行的移动设备上的 api

如果我的 api 在我的电脑上运行,当我浏览localhost:3000/purchases时,我会得到这个 json 响应。


[

  {

    "userId": 1,

    "id": 1,

    "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",

    "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"

  }

]

现在我想通过从手机访问完全相同的网址来获得相同的响应


[两者都在同一个wifi网络下]


我应该怎么办?


[我的服务器是带有 postgres 的 golang,我的客户端是有角度的,但我也想看到来自我的手机的 json 响应]


慕桂英4014372
浏览 107回答 1
1回答

智慧大石

您只需要获取 PC 的本地 ip:赢 + R写“命令”写“ipconfig /all”找到你本地的 ipV4 "192.168.xx"现在你只需要访问:“192.168.xx/purchases”如果你真的想使用“localhost:3000/purchases”通过手机访问它,你需要安装一个adroid Web server app
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go