Promise.all(arr.map(async (num) => { // 等待非同步工作完成 await asyncWorker(num); return num + 1; })).then((results) => { // [ 2, 3, 4, 5, ...
確定! 回上一頁