运行我的应用程序时出现错误:
错误:参数类型'ContentType'无法分配给 参数类型“字符串”。
有人可以帮助我吗?
Response res = await dio.post(ocrUrl,data:{"image":base64Image}, options: new Options(contentType:ContentType.parse("application/x-www-form-urlencoded")));
答案 0 :(得分:0)
ContentType.parse
不返回字符串,但是options参数需要一个字符串。
这样做:
"Content-Type":"application/whatever"
或
options: Options(contentType: ContentType.whatever)
代替解析。