我需要迭代一个数组(或简单的for循环)以向服务器运行Ajax请求。问题是,要运行下一个元素,当前的Ajax请求必须首先完成。
到目前为止,我已经尝试过这样的操作,但是它无法正常工作,因为它似乎没有等待1个Ajax请求完成才移至下一个请求。我以为承诺和然后可以做到,但事实并非如此。
var ajax = function(rasqlQuery) {
return new Promise(function(resolve, reject) {
var getURL = "http://test" + "?username=rasguest&password=rasguest&query=" + encodeURIComponent(rasqlQuery);
$.ajax({
url: getURL,
// Not using async: false here as the request can take long time
type: 'GET',
cache: false,
timeout: 30000,
error: function(error) {
alert("error " + error.statusText);
},
success: function(result) {
resolve(result) ;
}
});
});
}
var promise;
for (var i = 0; i < 10; i++) {
// It should send Ajax request and wait the request finished before running to next iteration.
// Or if not possible, it can register 10 requests but they must be run sequentially.
promise = ajax("select 1 + " + i).then(function(result) {
console.log("i: " + i);
console.log("Result: " + result);
});
}
答案 0 :(得分:1)
Promise是一个异步操作,因此您无需将它们链接在一起,而是需要将它们链接在一起,方法是说下一次访存应仅在(.then
)个上一个完成之后进行:
var promise = Promise.resolve();
for (var i = 0; i < 10; i++) {
// You need to use this IIFE wrapper or ES2015+ let otherwise printed `i`
// will always be 10 because interaction between async behavior and closures
(function (i) {
promise = promise.then(function () {
return ajax("select 1 + " + i).then(function(result) {
console.log("i: " + i);
console.log("Result: " + result);
})
})
})(i);
}
promise.then(function () {
console.log("all done");
})