我已将我的节点Express应用程序剥离到最低限度。我甚至不再定义路线了。 当我去任何路线时,例如localhost:3000 / sdfsdf,我得到了预期的输出:
{“message”:“Not Found”,“error”:{“status”:404}}
然而,响应的HTTP状态代码是200.我希望它是404。 我错过了什么?
var express = require('express');
var path = require('path');
var app = express();
app.use(express.static(path.join(__dirname, 'public')));
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// development error handler
if (app.get('env') === 'development') {
app.use(function(err, req, res, next) {
//res.set('Content-Type', 'application/json');
res.status(err.status || 500);
res.status('error').json({
message: err.message,
error: err
});
});
}
// production error handler
app.use(function(err, req, res, next) {
res.set('Content-Type', 'application/json');
res.status(err.status || 500);
res.status('error').json({
message: err.message,
error: {'env': 'prod'}
});
});
module.exports = app;
答案 0 :(得分:1)
res.status(err.status || 500);
res.status('error').json({
您最后使用“res.statuscode
”覆盖error
。改为
res.status(err.status || 500);
res.json({