我正在向一个Python烧瓶REST api发出一个AJAX HTTP POST请求。我可以获得完成请求的百分比吗?
使用$ajax
或$http
的任何建议?
我尝试过以下代码。我得到了值和响应。
xhr.addEventListener("progress", function (evt) {
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
console.log(percentComplete * 100);
$('.progress').css({
width: percentComplete * 100 + '%'
});
if (percentComplete == 1) {
$('.progress').addClass('hide');
}
}
}, false);
return xhr;