Skip to content
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

Closed
lincycode opened this issue Oct 18, 2022 · 4 comments
Closed

PromiseAll的实现确实是有问题的 #13

lincycode opened this issue Oct 18, 2022 · 4 comments

Comments

@lincycode
Copy link
Contributor

No description provided.

@lincycode
Copy link
Contributor Author

并不符合预期, 使用以下p1,p2作为例子就知道问题所在了, p1没有resolve的时候就到p2执行res[1] = 1导致最终结果变为[empty,1]
const p1 = new Promise((resolve, reject) => {
setTimeout(() => {
resolve('hello');
}, 500);
});
let p2 = Promise.resolve(1);

@lincycode
Copy link
Contributor Author

解决方案为使用计数器而不是用res的数组长度判断, 如果使用数组长度判断应该用push操作更合理, 直接操作下标会导致数组长度"虚假"的增加, 但是push不能用在这里因为是异步请求可能导致最终res的结果不按原顺序呈现, 因此请用计数器判断是否可以最终resolve

@lincycode
Copy link
Contributor Author

这是我的代码

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);
      }
    }
  });
}

@Mayandev
Copy link
Owner

👏 欢迎提 PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants