最佳答案
我正在尝试创建一个可以接受参数的中间件。如何做到这一点?
例子
app.get('/hasToBeAdmin', HasRole('Admin'), function(req,res){
})
HasRole = function(role, req, res, next){
if(role != user.role){
res.redirect('/NotInRole);
}
next();
}