如何通过Express / Node以编程方式发送404响应?


Answers:


273

如今,响应对象上有专用的status功能。在致电之前,只需将其拴在某个地方send

res.status(404)        // HTTP status 404: NotFound
   .send('Not found');

7
这也适用于渲染的页面:res.status(404).render('error404')
jmu,

20
值得一提的是,它自己res.status(404);不会发送响应AFAIK。它需要与某些内容链接在一起,例如,res.status(404).end();或者您的第二个示例,或者后面必须带有例如res.end();res.send('Not found');
UpTheCreek

1
@UpTheCreek,我将从代码中删除第一个示例,以避免潜在的混乱。
Drew Noakes 2014年

1
较短的版本res.sendStatus(404)
bentesha

47

更新了Express 4.x的答案

res.send(404)新方法不是在Express的旧版本中使用,而是:

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

1
我敢肯定res.status(404)不是res.sendStatus(404)
杰克·威尔逊

4
res.sendStatus(404)是正确的。它等效于res.status(404).send()
贾斯汀·约翰逊

2
是的res.sendStatus(404); ,相当于 res.status(404).send('Not Found')
里克

@JakeWilson现在是什么??
blacksheep

43

您不必模拟它。res.send我相信的第二个参数是状态码。只需将404传递给该参数即可。

让我澄清一下:根据expressjs.org上的文档,似乎传递给的任何数字都res.send()将被解释为状态码。因此从技术上讲,您可以摆脱:

res.send(404);

编辑:我的意思是,我的意思res不是req。应在响应中调用

编辑:从Express 4开始,该send(status)方法已被弃用。如果您使用的是Express 4或更高版本,请使用:res.sendStatus(404)代替。(感谢@badcc的评论提示)


1
您也可以使用404发送消息: res.send(404, "Could not find ID "+id)
Pylinux,

在4.x中不推荐直接发送状态码,并且在某些时候可能会删除它。最好坚持使用.status(404).send('Not found')
Matt Fletcher 2014年

2
对于Express 4:“表达已弃用的res.send(status):请改用res.sendStatus(status)”
badcc

10

根据我将在下面发布的网站,这就是设置服务器的全部方法。他们显示的一个示例是这样的:

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


9

Express站点中,定义一个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!');
});

1
此示例代码不再位于您引用的链接上。这可能适用于早期版本的express吗?
德鲁·诺阿克斯

它实际上仍然适用于现有代码,您所要做的就是使用错误句柄中间件来捕获错误。例如:app.use(function(err, res, res, next) { if (err.message.indexOf('NotFound') !== -1) { res.status(400).send('Not found dude'); }; /* else .. etc */ });
alessioalex

0

IMO最好的方法是使用以下next()功能:

router.get('/', function(req, res, next) {
    var err = new Error('Not found');
    err.status = 404;
    return next(err);
}

然后由错误处理程序处理该错误,并且可以使用HTML很好地设置错误样式。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.