flutter Unhandled Exception: DioError [DioErrorType.other]: SocketException: OS Error:

flutter真机调试,调用dio库发送本地网络请求的时候出现这个问题:
[ERROR:flutter/lib/ui/ui_dart_state.cc(199)] Unhandled Exception: DioError [DioErrorType.other]: SocketException: OS Error: Connection timed out, errno = 110, address = 192.168.1.100, port = 47652
在网上搜索了很多,但基本都是Android模拟设备的解决办法,就是将localhost换成10.0.0.2。
Android真机模拟的时候,出现这个问题 解决办法是:因为主机的网络和手机的网络不在同一个局域网,只要放在同一个网络下就可以正常发送网络请求了。

你可能感兴趣的:(flutter,flutter)