下面的代码演示了尝试req.hash_id
从中间件登录。它对我显示为undefined
. 无论如何我可以让它工作吗?或者在常规 .use 中间件中轻松解析“:hash”?
app.param("hash",function(req, res, next, id){
req.hash_id = id;
return next();
});
app.use(function(req, res, next){
console.log(req.hash_id);
return next();
});