我有以下AJAX代碼,腳本將文件正確上傳到服務器(節點快車)。 我是一個面臨的問題是,只有當總字節被下載(所以在文件上傳結束時)而不是在其進程中時,纔會觸發onProgress。XMLHttpRequest事件onProgress僅在文件完成上傳時才被觸發
目前我無法在客戶端顯示文件上傳進度的一些UI。
我想知道這個問題是否與AJAX調用有關或可能與服務器有關。
var formData = new FormData();
var xhr = new XMLHttpRequest();
var onProgress = function (e) {
if (e.lengthComputable) {
var percentComplete = (e.loaded/e.total) * 100;
console.log(percentComplete);
}
};
var onLoad = function (event) {
var reponse = JSON.parse(xhr.responseText);
this._logicAddWdg(reponse);
}.bind(this);
var onError = function (err) {
console.log(onError);
};
formData.append('file', this._uploaderFile);
xhr.addEventListener('error', onError, false);
xhr.addEventListener('progress', onProgress, false);
xhr.addEventListener('load', onLoad, false);
xhr.open('post', '/uploads', true);
xhr.send(formData);
服務器響應標題:
Accept-Ranges:bytes
Cache-Control:public, max-age=0
Connection:keep-alive
Content-Length:5510872
Content-Range:bytes 0-5510871/5510872
Content-Type:video/mp4
Date:Tue, 11 Apr 2017 12:02:20 GMT
ETag:W/"5416d8-15b5ce4a545"
Last-Modified:Tue, 11 Apr 2017 12:02:20 GMT
X-Powered-By:Express
Request Headers
view source
Accept:*/*
Accept-Encoding:identity;q=1, *;q=0
Accept-Language:en-US,en;q=0.8
Cache-Control:no-cache
Connection:keep-alive
Host:localhost:8080
Pragma:no-cache
Range:bytes=0-
非常感謝它的作品,...但請你給我一個簡短的解釋?我是否應該將xhr.upload更改爲所有事件? – Radex