使用 ember-file-upload 上传多个文件

upload multiple files using ember-file-upload

在 ember js 中上传文件我们正在使用 ember-file-upload


在文档中我可以看到他们有 select 多个文件的选项,它会创建一个队列并一张一张地上传照片。所以假设队列中有 3 个文件,它发送 3 个请求。 我想要实现的是仅在一个请求中发送多个文件。

该插件似乎不支持您想要的功能。您可以尝试提取文件(File, I see that file queue service should have them in file property) from queue and send them using jQuery and formData. This article and this 的实例包含使用 jquery.

上传多个文件的示例