gpt4 book ai didi

javascript - TypeError : promise. then(...).then(...).then(...).then(...).catch 不是 Node Js 中的函数

转载 作者:数据小太阳 更新时间:2023-10-29 04:30:54 24 4
gpt4 key购买 nike

<分区>

我收到这个错误,我不知道如何解决。在 Node 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() 不是处理 promise 错误的正确方法,您有什么建议?我尽量避免使用外部库,而更喜欢使用 native javascript

编辑:解决方案

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

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com