gpt4 book ai didi

javascript - PushState 上的进度条

转载 作者:行者123 更新时间:2023-11-29 14:50:23 26 4
gpt4 key购买 nike

这是代码:

$.ajax({                        
type: "POST",
url: url,
xhr: function(e) {
//Download progress
xhr.addEventListener("progress", function(evt){
console.log(evt.lengthComputable);
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
//Do something with download progress
console.log(percentComplete);
}
});
return xhr;
},
dataType: "json",
success: function(data){

}
});

这是我用来从 Codeigniter 检索 View 的函数。我想在页面加载的同时显示一个进度条。但是,当我将 XHR 放入 AJAX 函数时,一切都停止了。有谁知道我怎样才能让它在进度条上运行。

提前致谢。

最佳答案

您错过了变量声明,因此您的代码无法编译。

xhr: function () {
var xhr = new window.XMLHttpRequest(); // <<<<<<< missed this variable
//Download progress
xhr.addEventListener("progress", function (evt) {
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
//Do something with download progress
console.log(percentComplete);
}
}, false);
return xhr;
},

请注意,如果 evt.lengthComputable 为 false,则您无法衡量请求的进度。

关于javascript - PushState 上的进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26739795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com