promise.all await实现多个请求后同步执行方法

2 min read
const a = async (x) => {};
const b = async (x, y) => {};
const c = async (x, y, z) => {};

async function all () {
    const [resultA, resultB, resultC] = await Promise.all([
        a(x), 
        b(x, y),
        c(x, y, z)
    ]);
}