我想在我的Express / Node服务器上模拟404错误。我怎么能这样做?
答案 0 :(得分:230)
现在响应对象上有一个专门的status
function。在致电send
之前,只需将其链接到某处。
res.status(404) // HTTP status 404: NotFound
.send('Not found');
答案 1 :(得分:42)
您无需模拟它。 res.send
的第二个参数我认为是状态代码。只需将404传递给该论点。
让我澄清一点:Per the documentation on expressjs.org似乎传递给res.send()
的任何数字都将被解释为状态代码。从技术上讲,你可以逃脱:
res.send(404);
编辑:我的不好,我的意思是res
而不是req
。它应该在响应中调用
编辑:从Express 4开始,send(status)
方法已被弃用。如果您使用的是Express 4或更高版本,请使用:res.sendStatus(404)
代替。 (感谢@badcc在评论中提示)
答案 2 :(得分:37)
新方法是:
,而不是像旧版本的Express那样使用res.send(404)
res.sendStatus(404);
Express将发送一个非常基本的404响应,其中包含" Not Found"文本:
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
答案 3 :(得分: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);
});
答案 4 :(得分:9)
从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!');
});
答案 5 :(得分:1)
IMO最好的方法是使用gcc
函数:
next()
然后由您的错误处理程序处理该错误,您可以使用HTML很好地设置错误样式。