我想知道为什么$ .when解决得太早?
我只有在所有其他承诺都已解决时才需要解决。
我想念什么吗?
更新:http://jsfiddle.net/7hdx5j6z/6/
var promises = []
localforage.iterate(function(value, key) {
if ( key.indexOf('params_') === -1 ) {
promises.push(localforage.removeItem(key))
console.log(promises)
}
})
$.when.apply($, promises).then(function() {
console.log('all done!')
})
最佳答案
iterate
本身返回一个承诺。您需要等待,然后再填充promises
数组。
fiddle
var promises = []
var x = localforage.iterate(function (value, key) {
if (key.indexOf('params_') === -1) {
var promise = localforage.removeItem(key)
promises.push(promise)
console.log(promise)
}
})
console.log("x", x);
x.then(function () {
$.when.apply($, promises).then(function () {
console.log('all done!')
})
});
关于javascript - $。当 promise 解决得太早时,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27798740/