await 与 Promise.all 结合使用
【await 与 Promise.all 结合使用】当遇到多个可以同时执行的异步任务时,就需要使用 Promise.all。
Promise.all 方法用于将多个 Promise 实例,包装成一个新的 Promise 实例。const p = Promise.all([p1, p2, p3])
Promise.all 方法接受一个数组作为参数,p1、p2、p3 都是 Promise 实例,如果不是,就会先调用 Promise.resolve 方法,将参数转为 Promise 实例,再进一步处理。(Promise.all 方法的参数可以不是数组,但必须具有 Iterator 接口,且返回的每个成员都是 Promise 实例。)
而 async/await 本身就是 promise 的语法糖,因此可以与 Promise.all 结合使用:
const p1 = async () => {}
const p2 = async () => {}
const p3 = async () => {}const [result1, result2, result3] = await Promise.all([p1, p2, p3])console.log(result1)
console.log(result2)
console.log(result3)
推荐阅读
- JAVA(抽象类与接口的区别&重载与重写&内存泄漏)
- Docker应用:容器间通信与Mariadb数据库主从复制
- 《真与假的困惑》???|《真与假的困惑》??? ——致良知是一种伟大的力量
- 第326天
- Shell-Bash变量与运算符
- 逻辑回归的理解与python示例
- Guava|Guava RateLimiter与限流算法
- 我和你之前距离
- CGI,FastCGI,PHP-CGI与PHP-FPM
- 原生家庭之痛与超越