Promise.all:已解析值的顺序
查看MDN看起来像values
传递给then()
Promise的回调。all包含按promise顺序的值。例如:
var somePromises = [1, 2, 3, 4, 5].map(Promise.resolve);return Promise.all(somePromises).then(function(results) {
console.log(results) // is [1, 2, 3, 4, 5] the guaranteed result?
});
谁能引用规范说明values
应该遵循的顺序?
PS:运行这样的代码表明这似乎是对的,尽管这当然没有证据-可能是巧合。
回答:
不久, 。
按照您链接到的规范,Promise.all(iterable)
将一个iterable
即支持该[Iterator
接口的对象)作为参数,然后再调用PerformPromiseAll( iterator, constructor,
resultCapability)它,后者iterable
使用循环IteratorStep(iterator)
。
这意味着,如果Promise.all()
严格传递您传递给的迭代器,则一旦传递,它们仍将被订购。
通过Promise.all()Resolve
每个已解析的承诺都有一个内部[[Index]]
插槽的位置来实现解析,该插槽在原始输入中标记承诺的索引。
所有这一切意味着,只要严格按照输入顺序对输出进行严格排序(例如,数组)。
您可以在下面的小提琴(ES6)中看到这一点:
// Used to display resultsconst write = msg => {
document.body.appendChild(document.createElement('div')).innerHTML = msg;
};
// Different speed async operations
const slow = new Promise(resolve => {
setTimeout(resolve, 200, 'slow');
});
const instant = 'instant';
const quick = new Promise(resolve => {
setTimeout(resolve, 50, 'quick');
});
// The order is preserved regardless of what resolved first
Promise.all([slow, instant, quick]).then(responses => {
responses.map(response => write(response));
});
以上是 Promise.all:已解析值的顺序 的全部内容, 来源链接: utcz.com/qa/426082.html