我有一个 ajax 调用正在获取一个大的 json 列表。有什么办法可以制作一个进度条来获取 json 加载的实际值(例如,状态栏显示 200 个加载中的 1 个)?
现在我有一个非常基本的 Ajax 调用
function SendAjax(urlMethod, jsonData, returnFunction) {
$.ajax({
type: "GET",
contentType: "application/json; charset=utf-8",
url: urlMethod,
data: jsonData,
dataType: "json",
success: function (msg) {
if (msg != null) {
ReturnJson(msg);
}
},
error: function (xhr, status, error) {
// Boil the ASP.NET AJAX error down to JSON.
var err = eval("(" + xhr.responseText + ")");
// Display the specific error raised by the server
alert(err.Message);
}
});
}