我正在使用我从教程书中获取的代码。我使用护照实现了用户,app.use
检查UnauthorizedError
是教程推荐的方法,用于检查是否检查了对应用程序的受限部分的未授权访问。
每当我输入一个坏网址时,网站就会挂起,没有错误处理,也没有消息发送到浏览器。昨天我花了很多时间检查我的路线,似乎没有明显的问题。
然后今天有了一个小小的预感,我评论了Unauthorized error
的错误检查,并且错误处理再次完好无损。对此处发生的事情的任何建议以及如何正确实施此错误检查?
注意:如果实际未经授权访问已知的url良好路由,则此错误检查确实有效。但是,即使登录,它仍然无法捕获错误的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;
答案 0 :(得分:2)
也许,您必须调用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);
});