我在Windows 10中使用Flutter, VSCode和Android模拟器。还有Deno作为后端服务器。我正试图将Flutter应用程序连接到我的PC本地的Deno应用程序。但我不知道该用哪个地址?
这是我试图从Flutter应用程序发送get, post, etc.
请求的地址:
http://10.0.2.2:8000/api/register
这是我试图在我的deno应用程序中接收这些请求的地址:
Listening on: http://0.0.0.0:8000
和端点,如/api/register
工作时,我使用邮差测试他们与以下地址,例如:
0.0.0.0:8000/api/register
我不知道是什么问题,我怎么能解决它?
似乎,当我使用Android模拟器,并想指出的http://localhost
我必须使用以下地址:
http://10.0.2.2
表示Android模拟器中的localhost
。