颤振:DioError [DioErrorType.response]:XMLHttpRequest 错误

时间:2021-07-16 07:58:08

标签: flutter google-chrome xmlhttprequest dio

我创建了一个应用程序并在模拟器和安卓手机上对其进行了测试,我使用的是基于 api 和 nodejs 的后端和 mongodb 数据库。当我在设备上测试它时它工作正常,但是当我在 chrome 上运行它时它向我发送这个错误。

错误:

Error: Unsupported operation: NetworkInterface.list

DioError [DioErrorType.response]: XMLHttpRequest error.

这是我的 dio 请求代码

代码:

calltimeInApi() async {
    Dio dio=new Dio();
    var data={
      'username': getname,
      'token': getaccesstoken,
      
    };
    timeOutButtonPressed=true;
    await dio
    .post(localhostUrlTimeIn,data: json.encode(data))
      .then((onResponse)async {
       
        getapitimein=onResponse.data['TimeIn'];


      }).catchError((onerror){
        print(onerror.toString());
    });
  }

请帮助我做错的地方!

0 个答案:

没有答案