- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试执行多个有可能失败的 promise 。万一失败了,我如何找出哪一个失败了,并且仍然能够访问未失败的 Promise 的结果?
现在,我正在使用 Promise.all
,但是如果任何 promise 失败,Promise.all
会自动进入 catch 错误 block ,因此我无法访问 .then
block 中的任何内容,因此我无法访问任何成功的 promise 结果。有人可以帮忙吗?
我的 fiddle :Wait until all promises complete even if some rejected
我的代码:
let promise1 = new Promise((resolve, reject) => {
console.log('-uno-')
resolve('-promise 1 success')
})
let promise2 = new Promise((resolve, reject) => {
console.log('-dos-')
reject('-promise 2 fail')
})
let promise3 = new Promise((resolve, reject) => {
console.log('-tres-')
reject('-promise 3 fail')
})
let promise4 = new Promise((resolve, reject) => {
setTimeout(() => {
console.log('-cuatro-')
resolve('-promise 4 success-')
}, 3000)
})
Promise.all([promise1, promise2, promise3, promise4]).then((res) => {
console.log('--done--', res)
}).catch((err) => {
console.log('--err--', err)
})
最佳答案
Promise.all 似乎不是解决这个问题的最佳方法。来自 MDN (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all):
If any of the passed-in promises reject, Promise.all immediately rejects with the value of the promise that rejected, whether or not the other promises have resolved.
所以 Promise.all() 适用于需要解决每个 Promise 的情况。您是否有理由需要将它们全部一起解决?如果没有,最好只给每个 Promise 自己的 .then() 和 .catch() block 。
关于javascript - 如何在 Promise.all 中访问已解决的 Promise es6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43823860/
我是一名优秀的程序员,十分优秀!