即使选择了多个文件,也只会上传1个文件

时间:2014-05-08 15:29:33

标签: jquery-file-upload blueimp

当我点击文件输入按钮并在文件对话框中选择两个文件时,在add回调中我看到data.files.length的值为2.在调用{{1}之前},值仍为2.但是,只上传了1个文件。 为什么呢?

使用的相关配置选项是:

data.submit()

jQuery文件上传附加到...

autoUpload: false,
singleFileUploads: false,

1 个答案:

答案 0 :(得分:0)

您正在寻找的配置选项是MaxNumberOfFiles。

// sets maximum number of files...
$("form#formid").fileupload('option', 'maxNumberOfFiles', 10);  

您可能还想将输入更改为以下

<input id="fileuploadinput" type="file" name="attachment[]" multiple>
// Only reason to change id is so that it may not conflict. You may not have to do it though.

如果没有其他问题,希望这可以解决您的问题。