错误:flutter/lib/ui/ui_dart_state.cc(186) UnhandledException: SocketException:OSError:No route to host, errno=113,address = xxx.xxx.xx.xx,port= XXXXX

时间:2021-06-30 14:53:15

标签: android flutter localhost socketexception

未来的 fetchusers() 异步{

String baseUrl = "xxx.xxx.xx.xx";
print("before url hit");
final response = await http.get(Uri.http(baseUrl, "tuts/api"));
// final response = await http.get(Uri.http(baseUrl,'tuts/api/index.php'));
var Users = List<user_model>();
if(response.statusCode == 200){
  var usersJson = json.decode(response.body);
  for(var userJson in usersJson){
    Users.add(user_model.fromJson(userJson));
  }
}
if(response.statusCode ==404){
  print(response.headers);
}
print(response.body);
return Users;

}

我试图从一个 API 获取数据,该 API 返回邮递员的用户数据。该api作为本地主机托管。 我的笔记本电脑和移动网络是相同的,我使用机器地址而不是 127.0.0.1 但是,在颤振中我找不到任何显示数据的方法。 我还在 android->app->src->main->AndroidManifest.xml 中设置了 android 互联网权限。 但没有什么对我有用。 我期待听到解决方案!

1 个答案:

答案 0 :(得分:0)

在应用程序标记中添加此行 android:usesCleartextTraffic="true" 并尝试。

<application
        android:name="io.flutter.app.FlutterApplication"
        android:label="MyApp"
        android:usesCleartextTraffic="true"
        android:icon="@mipmap/ic_launcher" >
        <activity>
        ...
        </activity>
</application>