回答:
今日では、応答オブジェクトにこれ専用のstatus
関数があります。呼び出す前に、どこかにそれをチェーンしてくださいsend
。
res.status(404) // HTTP status 404: NotFound
.send('Not found');
res.status(404).render('error404')
res.status(404);
それ自体ではAFAIK応答を送信しないことに注意してください。それは何か、などを連鎖させることのいずれかに必要res.status(404).end();
か、あなたの第二の例、またはそれは例えば続いする必要がありres.end();
、res.send('Not found');
res.sendStatus(404)
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
res.status(404)
はないと確信していres.sendStatus(404)
ます。
res.sendStatus(404)
正しい。これは次と同等ですres.status(404).send()
res.sendStatus(404);
はに相当 res.status(404).send('Not Found')
シミュレーションする必要はありません。res.send
私の2番目の引数はステータスコードです。その引数に404を渡すだけです。
それを明確にしましょう:expressjs.orgのドキュメントによると、渡された数値res.send()
はステータスコードとして解釈されるようです。したがって、技術的には、次のことを回避できます。
res.send(404);
編集:私の悪い、私はのres
代わりに意味しましたreq
。応答時に呼び出す必要があります
編集: Express 4以降、このsend(status)
メソッドは廃止されました。Express 4以降を使用している場合は、res.sendStatus(404)
代わりに:を使用してください。(コメントのヒントについては@badccに感謝します)
res.send(404, "Could not find ID "+id)
.status(404).send('Not found')
以下に掲載するサイトによると、これがサーバーの設定方法です。彼らが示す1つの例はこれです:
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);
});
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!');
});
app.use(function(err, res, res, next) { if (err.message.indexOf('NotFound') !== -1) { res.status(400).send('Not found dude'); }; /* else .. etc */ });