如何才能在缺失路线上将Express.js变为404?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何才能在缺失路线上将Express.js变为404?相关的知识,希望对你有一定的参考价值。
目前,我有以下所有其他路线:
app.get('*', function(req, res){
console.log('404ing');
res.render('404');
});
根据日志,即使路线在上面匹配,也会被解雇。如何在没有任何匹配的情况下才能让它发射?
答案
你只需要把它放在所有路线的尽头。
看看Passing Route Control的第二个例子:
var express = require('express')
, app = express.createServer();
var users = [{ name: 'tj' }];
app.all('/user/:id/:op?', function(req, res, next){
req.user = users[req.params.id];
if (req.user) {
next();
} else {
next(new Error('cannot find user ' + req.params.id));
}
});
app.get('/user/:id', function(req, res){
res.send('viewing ' + req.user.name);
});
app.get('/user/:id/edit', function(req, res){
res.send('editing ' + req.user.name);
});
app.put('/user/:id', function(req, res){
res.send('updating ' + req.user.name);
});
app.get('*', function(req, res){
res.send('what???', 404);
});
app.listen(3000);
或者,您无能为力,因为所有不匹配的路由都将生成404.然后您可以使用此代码显示正确的模板:
app.error(function(err, req, res, next){
if (err instanceof NotFound) {
res.render('404.jade');
} else {
next(err);
}
});
它记录在Error Handling中。
另一答案
我打赌你的浏览器正在跟进对favicon的请求。这就是为什么在请求页面成功200次后,您在日志中看到404。
设置favicon路线。
另一答案
我想要一个捕获所有只会在丢失的路由上呈现我的404页面,并在错误处理文档https://expressjs.com/en/guide/error-handling.html中找到它
app.use(function (err, req, res, next) {
console.error(err.stack)
res.status(404).render('404.ejs')
})
这对我有用。
另一答案
希望它有用,我在路线底部使用了这段代码
router.use((req, res, next) => {
next({
status: 404,
message: 'Not Found',
});
});
router.use((err, req, res, next) => {
if (err.status === 404) {
return res.status(400).render('404');
}
if (err.status === 500) {
return res.status(500).render('500');
}
next();
});
以上是关于如何才能在缺失路线上将Express.js变为404?的主要内容,如果未能解决你的问题,请参考以下文章