标签: node.js express express-session
如何在渲染响应后在nodeJS中设置会话变量。 做这样的事情可以让页面永远加载,
app.get('/voter/manage', function (req, res) { res.render('voterManage', function() { notification.toNotify = false; req.session.notification = notification; }); });