我有一个非常基本的 Express Web 服务器:
var app = module.exports = express.createServer();
app.get('/:user', function(req, res) {
console.log('GET');
});
app.param('user', function(req, res, next, id) {
console.log('PARAM');
next();
});
app.listen(3000);
当我运行时http://localhost:3000/MyName
,我的控制台中有以下输出:
PARAM
GET
PARAM
GET
为什么我得到每个输出两次?