-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PromiseAll的实现确实是有问题的 #13
Comments
并不符合预期, 使用以下p1,p2作为例子就知道问题所在了, p1没有resolve的时候就到p2执行res[1] = 1导致最终结果变为[empty,1] |
解决方案为使用计数器而不是用res的数组长度判断, 如果使用数组长度判断应该用push操作更合理, 直接操作下标会导致数组长度"虚假"的增加, 但是push不能用在这里因为是异步请求可能导致最终res的结果不按原顺序呈现, 因此请用计数器判断是否可以最终resolve |
这是我的代码 function PromiseAll(arr) {
return new Promise((resolve, reject) => {
const len = arr.length;
const result = [];
let succeed = 0;
for (let i = 0; i < len; ++i) {
const cur = arr[i];
if (isPromise(cur)) {
arr[i].then((res) => {
process(i, cur);
// 这里只是简化放在第二个参数,catch行为同
}, reject);
} else {
process(i, cur);
}
}
function process(index, value) {
result[index] = value;
if (++succeed === len) {
resolve(result);
}
}
});
} |
👏 欢迎提 PR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: