如何使用 Express/Node 以编程方式发送 404 响应?
Posted
技术标签:
【中文标题】如何使用 Express/Node 以编程方式发送 404 响应?【英文标题】:How to programmatically send a 404 response with Express/Node? 【发布时间】:2012-01-13 15:55:10 【问题描述】:我想在我的 Express/Node 服务器上模拟 404 错误。我该怎么做?
【问题讨论】:
“模拟”与“真实”有何不同? 【参考方案1】:从 Express 4.0 开始,有一个专用的sendStatus
function:
res.sendStatus(404);
如果您使用的是早期版本的 Express,请改用 status
function。
res.status(404).send('Not found');
【讨论】:
这也适用于渲染页面:res.status(404).render('error404')
值得注意的是,它自己 res.status(404);
不会发送响应 AFAIK。它需要与某些东西链接在一起,例如res.status(404).end();
或您的第二个示例,或者需要在后面加上例如res.end();
, res.send('Not found');
@UpTheCreek,我将从代码中删除第一个示例,以避免出现这种混淆的可能性。
短版res.sendStatus(404)
@bentesha 计划简单。【参考方案2】:
Express 4.x 的更新答案
而不是像旧版本的Express那样使用res.send(404)
,新的方法是:
res.sendStatus(404);
Express 将发送带有“未找到”文本的非常基本的 404 响应:
HTTP/1.1 404 Not Found
X-Powered-By: Express
Vary: Origin
Content-Type: text/plain; charset=utf-8
Content-Length: 9
ETag: W/"9-nR6tc+Z4+i9RpwqTOwvwFw"
Date: Fri, 23 Oct 2015 20:08:19 GMT
Connection: keep-alive
Not Found
【讨论】:
我很确定这只是res.status(404)
而不是res.sendStatus(404)
。
res.sendStatus(404)
是正确的。相当于res.status(404).send()
是的 res.sendStatus(404);
等同于 res.status(404).send('Not Found')
@JakeWilson 现在是什么??【参考方案3】:
您不必模拟它。我相信res.send
的第二个参数是状态码。只需将 404 传递给该参数即可。
让我澄清一下:根据the documentation on expressjs.org,似乎传递给res.send()
的任何数字都将被解释为状态码。所以从技术上讲,你可以侥幸逃脱:
res.send(404);
编辑:我的错,我的意思是 res
而不是 req
。应该在响应中调用它
编辑: 从 Express 4 开始,send(status)
方法已被弃用。如果您使用 Express 4 或更高版本,请改用:res.sendStatus(404)
。 (感谢@badcc 在 cmets 中的提示)
【讨论】:
您也可以使用 404 发送消息:res.send(404, "Could not find ID "+id)
直接发送状态码在 4.x 中已被弃用,并且可能会在某个时候被删除。最好坚持.status(404).send('Not found')
对于 Express 4:“表示弃用 res.send(status):改用 res.sendStatus(status)”【参考方案4】:
根据我将在下面发布的网站,这就是您设置服务器的方式。他们展示的一个例子是:
var http = require("http");
var url = require("url");
function start(route, handle)
function onRequest(request, response)
var pathname = url.parse(request.url).pathname;
console.log("Request for " + pathname + " received.");
route(handle, pathname, response);
http.createServer(onRequest).listen(8888);
console.log("Server has started.");
exports.start = start;
及其路由功能:
function route(handle, pathname, response)
console.log("About to route a request for " + pathname);
if (typeof handle[pathname] === 'function')
handle[pathname](response);
else
console.log("No request handler found for " + pathname);
response.writeHead(404, "Content-Type": "text/plain");
response.write("404 Not found");
response.end();
exports.route = route;
这是一种方式。 http://www.nodebeginner.org/
他们从另一个站点创建一个页面,然后加载它。这可能是您正在寻找的更多内容。
fs.readFile('www/404.html', function(error2, data)
response.writeHead(404, 'content-type': 'text/html');
response.end(data);
);
http://blog.poweredbyalt.net/?p=81
【讨论】:
【参考方案5】:在Express site 中,定义一个 NotFound 异常,并在您想要一个 404 页面或在以下情况下重定向到 /404 时抛出它:
function NotFound(msg)
this.name = 'NotFound';
Error.call(this, msg);
Error.captureStackTrace(this, arguments.callee);
NotFound.prototype.__proto__ = Error.prototype;
app.get('/404', function(req, res)
throw new NotFound;
);
app.get('/500', function(req, res)
throw new Error('keyboard cat!');
);
【讨论】:
此示例代码不再位于您引用的链接中。这可能适用于早期版本的 express 吗? 它实际上仍然适用于现有代码,您所要做的就是使用错误处理中间件来捕获错误。例如:app.use(function(err, res, res, next) if (err.message.indexOf('NotFound') !== -1) res.status(400).send('Not found dude'); ; /* else .. etc */ );
【参考方案6】:
IMO 最好的方法是使用 next()
函数:
router.get('/', function(req, res, next)
var err = new Error('Not found');
err.status = 404;
return next(err);
然后错误由您的错误处理程序处理,您可以使用 HTML 很好地设置错误样式。
【讨论】:
是的,我同意,在 node/express 上下文中使用中间件更加一致。以上是关于如何使用 Express/Node 以编程方式发送 404 响应?的主要内容,如果未能解决你的问题,请参考以下文章