我在服务器端(在db中运行多少个查询)有一个长时间运行的进程(不是确定的时间),这需要超过30秒。我想以%显示用户的进度。我在我的应用程序中使用了jquery,struts。 有办法吗?
答案 0 :(得分:4)
我们就是这样做的。
以下是进行ajax调用的示例方法。
function updateProgress() {
if (stopProgressCheck) return;
var webMethod = progressServiceURL + "/GetProgress";
var parameters = "{'guid':'" + guid + "'}"; //passing the guid value
$.ajax({
type: "POST",
url: webMethod,
data: parameters,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
if (msg.d != "NONE") { //add any necessary checks
//add code to update progress bar status using value in msg.d
statusTimerID = setTimeout(updateProgress, 100); //set time interval as required
}
},
error: function (x, t, m) {
alert(m);
}
});
}
希望这对你有用:)