要使这是一个同步操作,您需要在最后一个传输完成后开始新的传输。例如,Gmail 可以同时同时发送所有内容。AJAX 文件上传进度的事件是progress
或onprogress
在原始XmlHttpRequest
实例上。
因此,在每个 之后$.ajax()
,在服务器端(我不知道您将使用什么),发送一个 JSON 响应以在下一个输入上执行 AJAX。一种选择是将 AJAX 元素绑定到每个元素,以使事情变得更容易,因此您可以success
在$(this).sibling('input').execute_ajax()
.
像这样的东西:
$('input[type="file"]').on('ajax', function(){
var $this = $(this);
$.ajax({
'type':'POST',
'data': (new FormData()).append('file', this.files[0]),
'contentType': false,
'processData': false,
'xhr': function() {
var xhr = $.ajaxSettings.xhr();
if(xhr.upload){
xhr.upload.addEventListener('progress', progressbar, false);
}
return xhr;
},
'success': function(){
$this.siblings('input[type="file"]:eq(0)').trigger('ajax');
$this.remove(); // remove the field so the next call won't resend the same field
}
});
}).trigger('ajax'); // Execute only the first input[multiple] AJAX, we aren't using $.each
上面的代码适用于 multiple<input type="file">
而不是 for <input type="file" multiple>
,在这种情况下,它应该是:
var count = 0;
$('input[type="file"]').on('ajax', function(){
var $this = $(this);
if (typeof this.files[count] === 'undefined') { return false; }
$.ajax({
'type':'POST',
'data': (new FormData()).append('file', this.files[count]),
'contentType': false,
'processData': false,
'xhr': function() {
var xhr = $.ajaxSettings.xhr();
if(xhr.upload){
xhr.upload.addEventListener('progress', progressbar, false);
}
return xhr;
},
'success': function(){
count++;
$this.trigger('ajax');
}
});
}).trigger('ajax'); // Execute only the first input[multiple] AJAX, we aren't using $.each