我正在使用从教程书中获取的代码。我使用护照实现了用户,并且 app.use
检查 UnauthorizedError
是教程推荐的方法来检查对应用程序受限部分的未经授权的访问。
每当我输入错误的网址时,网站就会挂起,没有错误处理,也没有消息发送到浏览器。昨天我花了很大一部分时间检查我的路线,似乎没有明显的问题。
今天,我有一种小小的预感,注释掉了 Unauthorized error
的错误检查,瞧,错误处理又恢复正常了。对于这里发生的情况有什么建议以及如何正确实现此错误检查?
注意:当存在对已知 url 良好路由的实际未授权访问时,此错误检查确实有效。然而,即使登录,它仍然不会捕获错误的网址。
app.use('/', routes);
app.use('/api', routesApi);
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handlers
// Catch unauthorised errors
app.use(function (err, req, res, next) {
if (err.name === 'UnauthorizedError') {
res.status(401);
res.json({"message" : err.name + ": " + err.message});
}
});
// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: err
});
});
}
// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: {}
});
});
module.exports = app;
也许,您必须调用 next() 将错误转发到下一个错误处理程序。
app.use(function (err, req, res, next) {
if (err.name === 'UnauthorizedError') {
res.status(401);
res.json({"message" : err.name + ": " + err.message});
} else
next(err);
});
我是一名优秀的程序员,十分优秀!