美文网首页
DioError (DioError [DioErrorType

DioError (DioError [DioErrorType

作者: wzapp | 来源:发表于2021-03-08 20:18 被阅读0次

    今天使用FLutter的Dio库请求报错

    DioError (DioError [DioErrorType.RESPONSE]: Http status error [500])

    找了半天解决办法,最后发现是 contentType 设置的不对

    最后跟后台沟通,确定了contentType,改为以下代码

    Response result = await dio.post(
        "http://" + ip + ":" + port + url,
        data: data,
        options: new Options(
          contentType: Headers.formUrlEncodedContentType,
        ),
      )
    

    最终测试通过

    相关文章

      网友评论

          本文标题:DioError (DioError [DioErrorType

          本文链接:https://www.haomeiwen.com/subject/lrrmqltx.html