flutter错误:无法将参数类型“ ContentType”分配给参数类型“ String”

时间:2020-05-14 12:59:21

标签: flutter

运行我的应用程序时出现错误:

错误:参数类型'ContentType'无法分配给 参数类型“字符串”。

有人可以帮助我吗?

enter image description here

Response res = await dio.post(ocrUrl,data:{"image":base64Image}, options: new Options(contentType:ContentType.parse("application/x-www-form-urlencoded")));

1 个答案:

答案 0 :(得分:0)

ContentType.parse

不返回字符串,但是options参数需要一个字符串。

这样做:

"Content-Type":"application/whatever"

options: Options(contentType: ContentType.whatever)

代替解析。