如何使用 Flutter 发送多部分文件

How to send multipart file with Flutter

我想将图片作为多部分文件发送到服务器。

首先我尝试使用 http.post :

var response = await http.post(
      Uri.parse('url.php'),
      headers:{ "Content-Type":"multipart/form-data" } ,
      body: {
        "fichier": base64img
      }
    );

我遇到了这个错误:

Bad state: Cannot set the body fields of a Request with content-type "multipart/form-data".

查看 this topic 的答案 我尝试使用 dio 包 :

var dio = Dio();
    var formData = FormData.fromMap({
      'fichier': await MultipartFile.fromFile(filePath, filename: 'upload')
    });
    var response = await dio.post(
      'url.php', 
      data: formData
    );

我遇到了这个错误:

Error: Unsupported operation: MultipartFile is only supported where dart:io is available.

一个问题已经打开 here

最后,我尝试使用 http 包 中的 Mu​​ltipartRequest :

var url = Uri.parse('url.php');
    var request = new http.MultipartRequest("POST", url);
    request.files.add(
      await http.MultipartFile.fromPath(
        "fichier", 
        filePath
      )
    );
    request.send().then((response) => print(response));

得到与 dio 包完全相同的错误。

如果有人可以解决,我很乐意接受。

使用 http 包并使用 fromBytes 获取图像而不是 fromPath:

final uri = Uri.parse('https://myendpoint.com');
var request = new http.MultipartRequest('POST', uri);
final httpImage = http.MultipartFile.fromBytes('files.myimage', bytes,
    contentType: MediaType.parse(mimeType), filename: 'myImage.png');
request.files.add(httpImage);
final response = await request.send();