类型 'UploadFileInfo' 不是类型转换中类型 'String' 的子类型

type 'UploadFileInfo' is not a subtype of type 'String' in type cast

Image Reference

我正在尝试使用带有一些参数和一些 headers 的 HTTP 包在 flutter 中上传文件。但是它在 UploadFileInfo 中发生了问题。这是我的实际例外:

" type 'UploadFileInfo' is not a subtype of type 'String' in type cast "

您正在使用的 ContentType

application/x-www-form-urlencoded 

用于编码字符串,如:

field1=value1&field2=value2

要与 FormData 一起使用,您需要 ContentType

multipart/form-data

作为内容类型。

但是,据我所知 Dio 足够聪明,可以理解它,所以你也可以尝试省略 ContentType header!