并行和顺序执行的前提当然是,有一堆 promise 等着你去执行…… 通常我们把这“一堆”promise 对象放到一个数组里, [promise1, promise2, promise3, ...] 我们都知道想要让 promise 按顺序执行,那就是一个接一个的 then。然而手写很多 then 太累了,而嵌套的 promise…