摘要:
// 利用reduce同步处理promise const p = function(num) { return new Promise((resolve, reject) => { setTimeout(() => { resolve(num) }, 2000) }) }; // list: [1, 阅读全文
摘要:
// 利用reduce同步处理promise const p = function(num) { return new Promise((resolve, reject) => { setTimeout(() => { resolve(num) }, 2000) }) }; // list: [1, 阅读全文
|