我正在尝试将我的会话变量传递给我的车把模板,但我被卡住了。现在我在我的 app.configure 函数中使用它:
app.use(function(req, res, next){
res.locals.session = req.session;
console.log(res.locals.session);
next();
});
它正确记录到控制台,但是当我尝试在我的车把模板中使用“会话”变量时,什么也没有显示。这是我的模板的一部分:
<body>
<nav>
{{> topBarPartial}}
{{> secondaryBarPartial}}
</nav>
<div>
<p>before</p>
{{session}}
<p>after</p>
{{> mainPartial}}
</div>
{{> footerPartial}}
</body>
以下是控制台记录的内容:
{ cookie:
{ path: '/',
_expires: null,
originalMaxAge: null,
httpOnly: true },
userId: 45253262,
name: 'Austin' }
有任何想法吗?