小白妹妹写代码
- Hong Kong, China
- luohaojing[at]gmail.com
- https://sabrinaluo.github.io/tech
JavaScript是世界上第二好的语言😏
- Hong Kong, China
- luohaojing[at]gmail.com
- https://sabrinaluo.github.io/tech
-
Promise的顺序执行和并行执行
并行和顺序执行的前提当然是,有一堆promise等着你去执行…… 通常我们把这“一堆”promise对象放到一个数组里, [promise1, promise2, promise3, ...] 我们都知道想要让promise按顺序执行,那就是一个接一个的then。然而手写很多then太累了,...