Promise的三兄弟:all(), race()以及allSettled()
摘要: 玩转promise。
- 原文:promise 中的三兄弟 .all(), .race(), .allsettled()
- 译者:前端小智
fundebug经授权转载,版权归原作者所有。
从es6 开始,我们大都使用的是 promise.all()
和promise.race()
,promise.allsettled()
提案已经到第4阶段,因此将会成为ecmascript 2020
的一部分。
1.概述
promise.all
-
promise.all(iterable)
方法返回一个promise
实例,此实例在iterable
参数内所有的promise
都“完成(resolved)”或参数中不包含promise
时回调完成(resolve);如果参数中promise
有一个失败(rejected),此实例回调失败(reject),失败原因的是第一个失败promise
的结果
promise.race
-
promise.race(iterable) 方法返回一个
promise
,一旦迭代器中的某个promise
解决或拒绝,返回的promise
就会解决或拒绝。
promise.allsettled
-
promise.allsettled()方法返回一个
promise
,该promise
在所有给定的promise
已被解析或被拒绝后解析,并且每个对象都描述每个promise
的结果。
2. 回顾: promise 状态
给定一个返回promise
的异步操作,以下这些是promise
的可能状态:
- pending: 初始状态,既不是成功,也不是失败状态。
- fulfilled: 意味着操作成功完成。
- rejected: 意味着操作失败。
- settled:
promise
要么被完成,要么被拒绝。promise
一旦达成,它的状态就不再改变。
3.什么是组合
又称部分-整体模式,将对象整合成树形结构以表示“部分整体”的层次结构。组合模式使得用户对单个对象和组合对象的使用具有一致性,它基于两种函数:
- 基元函数(简短:基元)创建原子块。
- 组合函数(简称:组合)将原子和/或复合件组合在一起以形成复合件。
对于 js 的 promises 来说
- 基元函数包括:
promise.resolve()
、promise.reject()
- 组合函数:
promise.all()
,promise.race()
,promise.allsettled()
4. promise.all()
promise.all()
的类型签名:
- promise.all
(promises: iterable<promise >): promise<array >
返回情况:
完成(fulfillment):
如果传入的可迭代对象为空,promise.all
会同步地返回一个已完成(resolved
)状态的promise
。
如果所有传入的 promise
都变为完成状态,或者传入的可迭代对象内没有 promise
,promise.all
返回的 promise
异步地变为完成。
在任何情况下,promise.all
返回的 promise
的完成状态的结果都是一个数组,它包含所有的传入迭代参数对象的值(也包括非 promise 值)。
失败/拒绝(rejection):
如果传入的 promise
中有一个失败(rejected
),promise.all
异步地将失败的那个结果给失败状态的回调函数,而不管其它 promise
是否完成。
来个例子:
const promises = [ promise.resolve('a'), promise.resolve('b'), promise.resolve('c'), ]; promise.all(promises) .then((arr) => assert.deepequal( arr, ['a', 'b', 'c'] ));
如果其中的一个 promise 被拒绝,那么又是什么情况:
const promises = [ promise.resolve('a'), promise.resolve('b'), promise.reject('error'), ]; promise.all(promises) .catch((err) => assert.equal( err, 'error' ));
下图说明promise.all()
是如何工作的
4.1 异步 .map() 与 promise.all()
数组转换方法,如.map()
、.filter()
等,用于同步计算。例如
function timestwosync(x) { return 2 * x; } const arr = [1, 2, 3]; const result = arr.map(timestwosync); assert.deepequal(result, [2, 4, 6]);
如果.map()
的回调是基于promise
的函数会发生什么? 使用这种方式 .map()
返回的的结果是一个promises
数组。
promises
数组不是普通代码可以使用的数据,但我们可以通过promise.all()
来解决这个问题:它将promises数组转换为promise
,并使用一组普通值数组来实现。
function timestwoasync(x) { return new promise(resolve => resolve(x * 2)); } const arr = [1, 2, 3]; const promisearr = arr.map(timestwoasync); promise.all(promisearr) .then(result => { assert.deepequal(result, [2, 4, 6]); });
更实际工作上关于 .map()示例
接下来,咱们使用.map()
和promise.all()
从web
下载文件。 首先,咱们需要以下帮助函数:
function downloadtext(url) { return fetch(url) .then((response) => { // (a) if (!response.ok) { // (b) throw new error(response.statustext); } return response.text(); // (c) }); }
downloadtext()
使用基于promise
的fetch api 以字符串流的方式下载文件:
- 首先,它异步检索响应(第a行)。
- response.ok(b行)检查是否存在“找不到文件”等错误。
- 如果没有错误,使用
.text()
(第c行)以字符串的形式取回文件的内容。
在下面的示例中,咱们 下载了两个文件
const urls = [ 'http://example.com/first.txt', 'http://example.com/second.txt', ]; const promises = urls.map( url => downloadtext(url)); promise.all(promises) .then( (arr) => assert.deepequal( arr, ['first!', 'second!'] ));
promise.all()的一个简版实现
function all(iterable) { return new promise((resolve, reject) => { let index = 0; for (const promise of iterable) { // capture the current value of `index` const currentindex = index; promise.then( (value) => { if (anerroroccurred) return; result[currentindex] = value; elementcount++; if (elementcount === result.length) { resolve(result); } }, (err) => { if (anerroroccurred) return; anerroroccurred = true; reject(err); }); index++; } if (index === 0) { resolve([]); return; } let elementcount = 0; let anerroroccurred = false; const result = new array(index); }); }
5. promise.race()
promise.race()
方法的定义:
promise.race
promise.race(iterable) 方法返回一个 promise
,一旦迭代器中的某个promise
解决或拒绝,返回的 promise
就会解决或拒绝。来几个例子,瞧瞧:
const promises = [ new promise((resolve, reject) => settimeout(() => resolve('result'), 100)), // (a) new promise((resolve, reject) => settimeout(() => reject('error'), 200)), // (b) ]; promise.race(promises) .then((result) => assert.equal( // (c) result, 'result'));
在第 a
行,promise
是完成状态 ,所以 第 c
行会执行(尽管第 b
行被拒绝)。
如果 promise 被拒绝首先执行,在来看看情况是嘛样的:
const promises = [ new promise((resolve, reject) => settimeout(() => resolve('result'), 200)), new promise((resolve, reject) => settimeout(() => reject('error'), 100)), ]; promise.race(promises) .then( (result) => assert.fail(), (err) => assert.equal( err, 'error'));
注意,由于 promse
先被拒绝,所以 promise.race()
返回的是一个被拒绝的 promise
这意味着promise.race([])
的结果永远不会完成。
下图演示了promise.race()
的工作原理:
promise.race() 在 promise 超时下的情况
在本节中,我们将使用promise.race()
来处理超时的 promise
。 以下辅助函数:
function resolveafter(ms, value=undefined) { return new promise((resolve, reject) => { settimeout(() => resolve(value), ms); }); }
resolveafter()
主要做的是在指定的时间内,返回一个状态为 resolve
的 promise
,值为为传入的 value
调用上面方法:
function timeout(timeoutinms, promise) { return promise.race([ promise, resolveafter(timeoutinms, promise.reject(new error('operation timed out'))), ]); }
timeout()
返回一个promise
,该 promise
的状态取决于传入 promise
状态 。
其中 timeout
函数中的 resolveafter(timeoutinms, promise.reject(new error('operation timed out'))
,通过 resolveafter
定义可知,该结果返回的是一个被拒绝状态的 promise
。
再来看看timeout(timeoutinms, promise)
的运行情况。如果传入promise
在指定的时间之前状态为完成时,timeout
返回结果就是一个完成状态的 promise
,可以通过.then
的第一个回调参数处理返回的结果。
timeout(200, resolveafter(100, 'result!')) .then(result => assert.equal(result, 'result!'));
相反,如果是在指定的时间之后完成,刚 timeout
返回结果就是一个拒绝状态的 promise
,从而触发catch
方法指定的回调函数。
timeout(100, resolveafter(2000, 'result!')) .catch(err => assert.deepequal(err, new error('operation timed out')));
重要的是要了解“promise 超时”的真正含义:
- 如果传入入
promise
较到的得到解决,其结果就会给返回的promise
。 - 如果没有足够快得到解决,输出的
promise
的状态为拒绝。
也就是说,超时只会阻止传入的promise,影响输出 promise(因为promise只能解决一次), 但它并没有阻止传入promise
的异步操作。
5.2 promise.race() 的一个简版实现
以下是 promise.race()
的一个简化实现(它不执行安全检查)
function race(iterable) { return new promise((resolve, reject) => { for (const promise of iterable) { promise.then( (value) => { if (settlementoccurred) return; settlementoccurred = true; resolve(value); }, (err) => { if (settlementoccurred) return; settlementoccurred = true; reject(err); }); } let settlementoccurred = false; }); }
6.promise.allsettled()
“promise.allsettled”
这一特性是由jason williams,robert pamely和mathias bynens提出。
promise.allsettle()
方法的定义:
-
promise.allsettled
(promises: iterable<promise >)
: promise<array<settlementobject>>
它返回一个array
的promise
,其元素具有以下类型特征:
type settlementobject<t> = fulfillmentobject<t> | rejectionobject; interface fulfillmentobject<t> { status: 'fulfilled'; value: t; } interface rejectionobject { status: 'rejected'; reason: unknown; }
promise.allsettled()
方法返回一个promise,该promise在所有给定的promise已被解析或被拒绝后解析,并且每个对象都描述每个promise的结果。
举例说明, 比如各位用户在页面上面同时填了3个独立的表单, 这三个表单分三个接口提交到后端, 三个接口独立, 没有顺序依赖, 这个时候我们需要等到请求全部完成后给与用户提示表单提交的情况
在多个promise
同时进行时咱们很快会想到使用promise.all
来进行包装, 但是由于promise.all
的短路特性, 三个提交中若前面任意一个提交失败, 则后面的表单也不会进行提交了, 这就与咱们需求不符合.
promise.allsettled
跟promise.all
类似, 其参数接受一个promise
的数组, 返回一个新的promise
, 唯一的不同在于, 其不会进行短路, 也就是说当promise
全部处理完成后我们可以拿到每个promise
的状态, 而不管其是否处理成功.
下图说明promise.allsettle()
是如何工作的
6.1 promise.allsettled() 例子
这是promise.allsettled()
使用方式快速演示示例
promise.allsettled([ promise.resolve('a'), promise.reject('b'), ]) .then(arr => assert.deepequal(arr, [ { status: 'fulfilled', value: 'a' }, { status: 'rejected', reason: 'b' }, ]));
6.2 promise.allsettled() 较复杂点的例子
这个示例类似于.map()
和promise.all()
示例(我们从其中借用了downloadtext()
函数):我们下载多个文本文件,这些文件的url
存储在一个数组中。但是,这一次,咱们不希望在出现错误时停止,而是希望继续执行。promise.allsettled()
允许咱们这样做:
const urls = [ 'http://example.com/exists.txt', 'http://example.com/missing.txt', ]; const result = promise.allsettled( urls.map(u => downloadtext(u))); result.then( arr => assert.deepequal( arr, [ { status: 'fulfilled', value: 'hello!', }, { status: 'rejected', reason: new error('not found'), }, ] ));
6.3 promise.allsettled() 的简化实现
这是promise.allsettle()
的简化实现(不执行安全检查)
function allsettled(iterable) { return new promise((resolve, reject) => { function addelementtoresult(i, elem) { result[i] = elem; elementcount++; if (elementcount === result.length) { resolve(result); } } let index = 0; for (const promise of iterable) { // capture the current value of `index` const currentindex = index; promise.then( (value) => addelementtoresult( currentindex, { status: 'fulfilled', value }), (reason) => addelementtoresult( currentindex, { status: 'rejected', reason })); index++; } if (index === 0) { resolve([]); return; } let elementcount = 0; const result = new array(index); }); }
7. 短路特性
promise.all()
和 romise.race()
都具有 短路特性
-
promise.all(): 如果参数中
promise
有一个失败(rejected),此实例回调失败(reject)
promise.race():如果参数中某个promise
解决或拒绝,返回的 promise就会解决或拒绝。
8.并发性和 promise.all()
8.1 顺序执行与并发执行
考虑下面的代码:
asyncfunc1() .then(result1 => { assert.equal(result1, 'one'); return asyncfunc2(); }) .then(result2 => { assert.equal(result2, 'two'); });
使用.then()
顺序执行基于promise
的函数:只有在 asyncfunc1()
的结果被解决后才会执行asyncfunc2()
。
而 promise.all()
是并发执行的
promise.all([asyncfunc1(), asyncfunc2()]) .then(arr => { assert.deepequal(arr, ['one', 'two']); });
9.2 并发技巧:关注操作何时开始
确定并发异步代码的技巧:关注异步操作何时启动,而不是如何处理它们的promises。
例如,下面的每个函数都同时执行asyncfunc1()
和asyncfunc2()
,因为它们几乎同时启动。
function concurrentall() { return promise.all([asyncfunc1(), asyncfunc2()]); } function concurrentthen() { const p1 = asyncfunc1(); const p2 = asyncfunc2(); return p1.then(r1 => p2.then(r2 => [r1, r2])); }
另一方面,以下两个函数依次执行asyncfunc1()
和asyncfunc2()
: asyncfunc2()
仅在asyncfunc1()
的解决之后才调用。
function sequentialthen() { return asyncfunc1() .then(r1 => asyncfunc2() .then(r2 => [r1, r2])); } function sequentialall() { const p1 = asyncfunc1(); const p2 = p1.then(() => asyncfunc2()); return promise.all([p1, p2]); }
9.3 promise.all() 与 fork-join 分治编程
promise.all()
与并发模式“fork join”松散相关。重温一下咱们前面的一个例子:
promise.all([ // (a) fork downloadtext('http://example.com/first.txt'), downloadtext('http://example.com/second.txt'), ]) // (b) join .then( (arr) => assert.deepequal( arr, ['first!', 'second!'] ));
- fork:在
a
行中,分割两个异步任务并同时执行它们。 - join:在
b
行中,对每个小任务得到的结果进行汇总。
代码部署后可能存在的bug没法实时知道,事后为了解决这些bug,花了大量的时间进行log 调试,这边顺便给大家推荐一个好用的bug监控工具 fundebug。
原文:
关于fundebug
fundebug专注于javascript、微信小程序、微信小游戏、支付宝小程序、react native、node.js和java线上应用实时bug监控。 自从2016年双十一正式上线,fundebug累计处理了20亿+错误事件,付费客户有阳光保险、核桃编程、荔枝fm、掌门1对1、微脉、青团社等众多品牌企业。欢迎大家!