作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建 promise 链,然后根据需要向其中动态添加尽可能多的 promise 。这些添加可能在一些具有动态步骤数的循环中,所以我不能使用像 .then().then().then... 这样的链。下面的代码工作不正常,但你会明白的。结果应该是控制台在 3、4 和 5 秒内记录了 3000、4000、5000 个数字,但实际上不是这样工作的。有什么想法吗?
let launchChain = function(delay)
{
return new Promise((resolve: Function, reject: Function) => {
setTimeout(() => {
console.log(delay);
resolve();
}, delay)
})
}
let chain = launchChain(3000);
chain.then(function () {
return launchChain(4000);
})
chain.then(function () {
return launchChain(5000);
})
最佳答案
var delays = [0, 1000, 2000, 3000, 4000];
function workMyCollection(arr) {
return arr.reduce(function(promise, item) {
return promise.then(function() {
return launchChain(item);
});
// uses this orignal promise to start the chaining.
}, Promise.resolve());
}
function launchChain(delay) {
return new Promise(function(resolve, reject) {
setTimeout(function() {
console.log(delay);
resolve();
}, delay);
});
}
workMyCollection(delays);
var delays = [0, 1000, 2000, 3000, 4000];
var currentPromise = Promise.resolve();
for (let i = 0; i < delays.length; i++) {
// let makes i block scope .. var would not have done that
currentPromise = currentPromise.then(function() {
return launchChain(delays[i]);
});
}
function launchChain(delay) {
return new Promise(function(resolve, reject) {
setTimeout(function() {
console.log(delay);
resolve();
}, delay);
});
}
如果这对你有用,请告诉我:)感谢这个问题,我学到了很多东西!
关于javascript - 如何向 promise 链动态添加新 promise ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49030318/
我是一名优秀的程序员,十分优秀!