节点表达 404 错误 HTTP 状态代码
Node express 404 error HTTP status code
我已将我的节点 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;
res.status(err.status || 500);
res.status('error').json({
您终于用“error
”覆盖了 res.statuscode
。改为
res.status(err.status || 500);
res.json({
我已将我的节点 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;
res.status(err.status || 500);
res.status('error').json({
您终于用“error
”覆盖了 res.statuscode
。改为
res.status(err.status || 500);
res.json({