8

我正在尝试通过 Flutter Web 将图像上传到 Strapi。我知道(从此链接)我需要使用 FormData 来执行此操作。我研究了很多方法来做到这一点,我偶然发现了Dio,当然还有Http

两种解决方案都给了我错误: Unsupported operation: MultipartFile is only supported where dart:io is available.

我试过这段代码:

var request = new http.MultipartRequest("POST", Uri.parse(url));
    request.files.add(
      await http.MultipartFile.fromPath(
        "files",
        imageFilePath,
      ),
    );
    request.send().then((response) {
      if (response.statusCode == 200) print("Uploaded!");
      print(response.statusCode);
    }).catchError((e) => print(e));

正如这里建议的那样。

当我使用MultipartFile.fromBytes(...).

我只是想上传一个文件,因此我假设我的正文应该只包含 FormData ,正如Strapi 的文档files中提到的那样。

4

4 回答 4

6

所以,我在 Flutter Discord 上搜索了一些帮助,我发现我的问题是因为 Flutter Web 无法使用'dart:io',并且使用'dart:html'带走了 Flutter 的所有平台的使用。

我最终使用了这个进口:

import 'dart:convert';
import 'dart:typed_data';
import 'package:image_picker/image_picker.dart';
import 'package:http/http.dart' as http;
import 'package:http_parser/http_parser.dart';
import 'package:path/path.dart';
import 'package:async/async.dart';

这是我创建和工作的功能:

 Future<bool> uploadImage(
    String imageFilePath,
    Uint8List imageBytes,
  ) async {
    String url = SERVERURL + "/uploadRoute";
    PickedFile imageFile = PickedFile(imageFilePath);
    var stream =
        new http.ByteStream(DelegatingStream.typed(imageFile.openRead()));

    var uri = Uri.parse(url);
    int length = imageBytes.length;
    var request = new http.MultipartRequest("POST", uri);
    var multipartFile = new http.MultipartFile('files', stream, length,
        filename: basename(imageFile.path),
        contentType: MediaType('image', 'png'));

    request.files.add(multipartFile);
    var response = await request.send();
    print(response.statusCode);
    response.stream.transform(utf8.decoder).listen((value) {
      print(value); 
    });

我在使用Strapi时遇到了这个问题,这个解决方案就像一个魅力。

于 2020-09-04T14:37:40.290 回答
2

使用 Flutter 创建条目时上传文件

dio: ^3.0.10,mime: ^1.0.0http_parser.

主要部分是文件的键名,如果是的话foo,所以你必须更改files.imagefiles.foo文件上传

final mimeType = mime.lookupMimeType(imageFile.path, headerBytes: [0xFF, 0xD8])?.split('/');

FormData formData = new FormData.fromMap(
  {
    "files.image": await MultipartFile.fromFile(
      imageFile.path,
      filename: imageFile.path.split('/').last,
      contentType: MediaType(mimeType?[0], mimeType?[1]),
    ),
    "data": jsonEncode({
      "title": title,
      "summary": summary,
      "content": content,
    }),
  },
);

Response response = await _dio.post(
  "/blogs",
  data: formData,
  options: Options(),
);
于 2021-04-08T18:37:05.990 回答
0

在 Flutter Web 中:
我使用带有 express 作为后端源的 node.js 我创建了以下简单的方法来使用xamp将图像和文本数据上传到localhost服务器

String url = 'http://localhost:8080/blog_upload';
    var request = http.MultipartRequest('POST', Uri.parse(url));
    imagebytes = await image.readAsBytes();
    List<int> listData = imagebytes!.cast();
    request.files.add(http.MultipartFile.fromBytes('field_name', listData ,
        filename:'myFile.jpg'));
 request.fields['name'] = 'Mehran Ullah Khan';
 request.fields['country'] = 'Pakistan';
    var response = await request.send();

我在上述方法中使用了以下依赖项。

 http: ^0.13.3
 image_picker: ^0.8.2

我们如何使用 image_picker?首先全局声明imageimagebytes

image = await ImagePicker().pickImage(source: ImageSource.gallery);

这是我在后端使用的方法。

app.post('/blog_upload', upload.single('field_name'), async (req, res, next) => {
  let data = {name_db: req.body['name'],    Country_db:req.body['country'],};
    let sqlq = `INSERT INTO TableName SET ? `;
    db.query(sqlq, data, (insertionErr, insertionResult) => {
      if (insertionErr) {
        console.log('failed_upload');
        throw insertionErr;
      }
      else {
        console.log('done_upload');
        res.send(insertionResult);  
      }
    });
  });

在上述方法中,我使用了 包您可以在此链接multer and express中查看 multer 和 express 的完整详细信息

于 2021-07-24T06:50:33.960 回答
0

@Diego Cattarinich Clavel

你能说如何将此数据上传到服务器

字符串 url = 常量.BASE_URL + HttpUrls.categories; PickedFile imageFile = PickedFile(path); var stream = new http.ByteStream(DelegatingStream.typed(imageFile.openRead()));

var uri = Uri.parse(url);
int length = imageBytes.length;
var request = new http.MultipartRequest(
  "PUT",
  uri,
);

var multipartFile = new http.MultipartFile(
  'files.categoryImage',
  stream,
  length,
  filename: basename(imageFile.path),
  contentType: MediaType('image', 'png'),
);

request.files.add(multipartFile);
request.fields['data'] = '{"category":$category}';
print(request.url);

var response = await request.send();
print(response.statusCode);
response.stream.transform(utf8.decoder).listen((value) {
  print(value);
});
于 2021-08-17T12:03:26.680 回答