2 Star 0 Fork 0

huying5/reactCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
promise-all.js 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
huying5 提交于 2021-08-16 15:58 . promise-all and deepclone
function PromiseAll(promiseArray) {
return new Promise((resolve, reject) => {
if (!Array.isArray(promiseArray)) {
return reject(new Error('传入参数必须是数组'))
}
const res = [];
const promiseNums = promiseArray.length;
let counter = 0;
for (let i = 0; i < promiseNums; i++) {
Promise.resolve(promiseArray[i].then(value => {
counter++;
res[i] = value;
if (counter == promiseNums) {
resolve(res)
}
}).catch(e => reject(e)))
}
})
}
const pro1 = new Promise((res, rej) => {
setTimeout(() => {
res('1')
}, 1000)
})
const pro2 = new Promise((res, rej) => {
setTimeout(() => {
res('2')
}, 2000)
})
const pro3 = new Promise((res, rej) => {
setTimeout(() => {
rej('3')
}, 3000)
})
const proAll = PromiseAll([pro1, pro2, pro3]).then(res => {
console.log(res)
}).catch((e) => {
console.log(e)
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/hycodeWork/react-code.git
git@gitee.com:hycodeWork/react-code.git
hycodeWork
react-code
reactCode
master

搜索帮助