gpt4 book ai didi

javascript - 如何让循环等待ajax响应

转载 作者:行者123 更新时间:2023-11-28 18:45:23 27 4
gpt4 key购买 nike

$.ajax({
url: "",
data: "",
dataType: 'json',
success: function (data) {
var tblBody = '';
for(var i=0;i<data.length;i++){
$.ajax({
type: "GET",
url: "",
data: {},
success: function(response){
// creating table rows
tblBody += rowData;
},
error: function(){
}
});
}
$("#losssummary").append(tblBody); // appending table all rows
createDataTable('sample_1', "M d, yyyy");
},
error: function(err)
{
}
});
});

最佳答案

试试这个代码片段。

这里我使用了$.when().then()然后将 if 替换为 while

$.ajax({
url: "",
data: "",
dataType: 'json',
success: function(data) {
var tblBody = '',
i = 0;
while (i < data.length) {
$.when(
$.ajax({
type: "GET",
url: "",
data: {},
success: function(response) {
// creating table rows
tblBody += rowData;
},
error: function() {}
})
).then(function(data, textStatus, jqXHR) {
i++;
});
}
$("#losssummary").append(tblBody); // appending table all rows
createDataTable('sample_1', "M d, yyyy");
},
error: function(err) {}
});

关于javascript - 如何让循环等待ajax响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35403052/

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