TypeError:promise.then(...)。then(...)。then(...)。then(...)。catch不是Node Js

时间:2015-11-12 17:45:09

标签: javascript node.js promise

我收到此错误,我不知道如何解决它。 在节点js服务器中,我在promise上使用了一些.then()函数,最后我放置了一个由于某种原因无法识别的.catch()函数。 我在教程中的许多地方都看到过这是错误的处理方式。 我没有使用任何外部库。

错误:

 TypeError: promise.then(...).then(...).then(...).then(...).catch is not a function

这是我的代码:

exports.joinAlbum = function(req, res){


var promise = Album.findOne().where({'shortId': req.body.shortId}).exec(); // Returns a promise


promise.then(function(albumDoc){
    console.log('Then #1');

    .....

    }
    return albumDoc.save();  // Returns a promise
})



.then(function(albumDoc){
    console.log('Then #2');

    .....

    return User.findById(req.body.userId).exec(); // Returns a promise
})


.then(function(userDoc){
    console.log('Then #3');

     ........

    return userDoc.save();  // Returns a promise
})

//  Return a response
.then(function(savedUserDoc){
    console.log('Then #4');
    return res.status(200).json({success: true}); 
})

    //Error handler
.catch(function(err){
    console.log('Catch #1');
    console.log(err);
    res.status(200).json({success: false});
});
}

如果.catch()不是处理承诺错误的正确方法,你有什么建议?我试图避免使用外部库,而更喜欢使用原生javascript

编辑:解决方案

我添加了一个名为blue-bird的npm模块,帮助我解决了这个问题。

1 个答案:

答案 0 :(得分:13)

看起来你正在使用Mongoose,它返回自己的Promise,而不是包含catch函数的ES6 promise。猫鼬Promise没有捕捉功能。你可以覆盖Mongoose使用的默认Promise,幸运的是:

http://eddywashere.com/blog/switching-out-callbacks-with-promises-in-mongoose/