承诺 - 在Promise.all中捕获所有拒绝

时间:2014-07-31 10:37:32

标签: node.js promise bluebird

我有这个虚拟代码

var Promise = require('bluebird')
function rej1(){
    return new Promise.reject(new Error('rej1'));
}

function rej2() {
    return new Promise.reject(new Error('rej2'));
}
function rej3() {
    return new Promise.reject(new Error('rej3'));
}

Promise.all([rej1(),rej2(),rej3()] ).then(function(){
    console.log('haha')
},function(e){
    console.error(e);
})

在rejectionHandler中,我只看到第一次拒绝。是否可以查看所有三次拒绝?

1 个答案:

答案 0 :(得分:9)

是的,可以查看所有三次拒绝。只要一个承诺拒绝,Promise.all就会拒绝。相反 - 使用Promise.settle

Promise.settle([rej1(), rej2(), rej3()).then(function(results){
    var rejections = results.filter(function(el){ return el.isRejected(); });
    // access rejections here
    rejections[0].reason(); // contains the first rejection reason
});