gpt4 book ai didi

node.js - 捕获自定义错误在 Bluebird 中不起作用

转载 作者:搜寻专家 更新时间:2023-11-01 00:30:28 25 4
gpt4 key购买 nike

我试图在 Bluebird promise 链中抛出然后捕获自定义错误,但我无法让它捕获自定义错误。例如:

function login(req, res, next) {
function LoginError() {}

return User.where('id', req.body.userId).fetch()
.then(function (location) {
if (req.body.password !== location.get('password')) {
throw new LoginError();
}

// returns a promise
return Subscription.where('userId', location.get('userId')).fetch();
})
.then(function (subscription) {
return res.send(JSON.stringify(subscription));
})
.catch(LoginError, function (err) {
return res.send('Login error');
})
.catch(function (err) {
res.send('Other error: ' + JSON.stringify(err));
});
}

当密码不匹配并抛出 LoginError 时,错误在第二个 catch block 中被捕获,而不是 LoginError 的 catch block 。我做错了什么?

我正在使用 Express.js、Bluebird 和 Bookshelf/Knex,其中 User 是 Bookshelf 模型。

最佳答案

Bluebird 在 catch 中区分错误构造函数和谓词函数通过他们的继承:

For a parameter to be considered a type of error that you want to filter, you need the constructor to have its .prototype property be instanceof Error.

Such a constructor can be minimally created like so:

function MyCustomError() {}
MyCustomError.prototype = Object.create(Error.prototype);

您需要为您的 LoginError 执行相同的操作。

或者,如果您使用的是 ES6,则 class LoginError extends Error {}

关于node.js - 捕获自定义错误在 Bluebird 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37056928/

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