在用 Express 的時候,路由是我最困惑的事之一。知道用 app.get('*') 可以處理所有頁面,但這樣除了自訂的其他路由外,靜態檔案是被忽略的。最近在寫一個小工具的時候,找到了一個解決方案:
var app = module.exports = express.createServer();
// Configuration
app.configure(function () {
// ...
// 別把順序寫反了
app.use(express.static(__dirname '/ public'));
app.use(app.router);
});
// 其他router ...
// 404
app.get('*', function(req, res){
res.render('404.html', {
title: 'No Found'
})
});
把通配符放於最後處理。這樣沒有經過路由的所有頁面預設由 404.html 來接管。