all() will execute all promises asynchronously, and resolve when all of them resolve: Promise.all([ promise1, promise2, promise3, promise4 ]).then(values => { ...
確定! 回上一頁