引言
这是一道关于Promise的题目。因之前复习的关于Promise的内容都差不多忘了,再加上平时用得少,所以提交的时候只交了个半成品。现将我的答案记录在这
原题
const timeout = ms => new Promise((resolve, reject) => {
setTimeout(() => {
resolve();
}, ms);
});
const ajax1 = () => timeout(2000).then(() => {
console.log('1');
return 1;
});
const ajax2 = () => timeout(1000).then(() => {
console.log('2');
return 2;
});
const ajax3 = () => timeout(2000).then(() => {
console.log('3');
return 3;
});
const mergePromise = ajaxArray => {
// 在这里实现你的代码
};
// mergePromise([ajax1, ajax2, ajax3])
mergePromise([ajax1, ajax2, ajax3]).then(data => {
console.log('done');
console.log(data); // data 为 [1, 2, 3]
});
// 分别输出
// 1
// 2
// 3
// done
// [1, 2, 3]
我的答案
const mergePromise = ajaxArray => {
// 在这里实现你的代码
return new Promise((resolve,reject) => {
ajaxArray.push(Promise.resolve(() => null));
let data = [],
arrLen = ajaxArray.length - 1;
ajaxArray.reduce((calc,cur,index) => {
return calc.then((res) => {
res !== undefined?data.push(res):null;
return index !== arrLen?cur():resolve(data);
});
},Promise.resolve());
});
};
应该还有更优雅的解决方法
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。