并行请求多个异步接口

Posted 现刻

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了并行请求多个异步接口相关的知识,希望对你有一定的参考价值。

当打开页面需要很多初始信息时,需于调用好几个接口,如果采用异步嵌套方式调研会严重延长页面的打开时间。页面打开的时间是所有接口打开时间的和。

所以需要并行请求全部接口,然后只需要等待最慢的接口返回。那么页面打开的时间就是最慢的接口返回数据的时间。

方案1:
先同时请求全部接口,然后开始 await。

const userInfoFc = this.getUser();
const authInfoFc = this.getAuth();
const orgInfoFc = this.getOrgTree();

// await命令后面是一个 Promise 对象

const userInfo = await userInfoFc;
const authInfo = await authInfoFc;
const orgInfo = await orgInfoFc;

方案2

let [userInfo, authInfo] = await Promise.all([this.getUser(), this.getAuth()]);

PS:
Promise.all 如果开发中,all 有一个失败了,如何使程序不走人catch中?

let [userInfo, authInfo] = await Promise.all([this.getUser(), this.getAuth()].map(p=>p.catch(e=>e)));

方案3

const promise1 = Promise.resolve(3);
const promise2 = new Promise((resolve, reject) => setTimeout(reject, 100, \'foo\'));
const promises = [promise1, promise2];

Promise.allSettled(promises).
  then((results) => results.forEach((result) => console.log(result)));

// expected output:
// "fulfilled"
// "rejected"

MDN官方文档

以上是关于并行请求多个异步接口的主要内容,如果未能解决你的问题,请参考以下文章

jQuery的$.ajax方法支持同时创建多个异步ajax请求吗?而且这些ajax对象必须是并行处理的

多个异步请求

Promise 实现方法(请求)的异步(串行)执行

使用并行异步请求处理错误

关于Promise详解

react组件初始化接口请求有多个异步依赖参数