app.use(function(req, res, next){
res.locals.xxx = 'aaaa';
next();
});
app.set('views', path.join(__dirname, '../views'));
app.set('view engine', 'jade');
在玉石中:
meta(name='csrf-token', content='#{xxx}')
内容未定义。
并且有一长串app.use('/xxx/xxx', ...)
。我必须通过这些路由器中的本地人吗?还是在这里不起作用?
答案 0 :(得分:0)
尝试不使用引号和括号:
meta(name='csrf-token', content=xxx)
这对我有用