// 请求的参数
var ids = [11, 22, 33, 44, 55];
// post请求
$.post("a.php", {
id: 11
}, function(result) {
$("span").html(result);
});
或者说是 每个参数依次发送请求,依次输出返回数据。
// 请求的参数
var ids = [11, 22, 33, 44, 55];
// post请求
$.post("a.php", {
id: 11
}, function(result) {
$("span").html(result);
});
或者说是 每个参数依次发送请求,依次输出返回数据。
// 请求的参数
var ids = [11, 22, 33, 44, 55]
// post请求
var promises = []
ids.map(i => {
promises.push(
$.post('a.php', {
id: i
})
)
})
promises.all(promises).then(res => {
console.log(res)
})
返回的res就是你5次请求返回的结果组成的数组,排序和参数排序一致