我实际上正在尝试使用此代码来计算实际文件上传时间,但我发现剩余时间占文件上传的百分比,但它不起作用,因为当达到100%并刷新页面时,这些文件尚未移动到目标文件夹,但我必须等待它们被移动。有解决办法吗?
xhr: function(){
var xhr = new window.XMLHttpRequest();
var started_at = new Date();
xhr.upload.addEventListener( 'progress', function(e){
if( e.lengthComputable ){
var loaded = e.loaded;
var total = e.total;
var progressValue = Math.round( ( loaded / total ) * 100 );
$('section.gallery .row div .content-progress-bar .progress .progress-bar').width(progressValue+'%').change();
}
}, false );
return xhr;
}