如何在渲染html页面中检索nodejs会话值?

时间:2018-03-02 09:52:17

标签: html node.js session

我需要在注册页面中访问此用户名。以下代码无效。你能说明需要做什么吗?

  app.post('/login', function (req, res) {
    if(req.body.username === "ms" || req.body.password === "ms") {
     sess=req.session;
     req.session.password = req.body.password;
     req.session.username = req.body.username;      
     res.render('/registration.html', { username:req.user.username });
  }
 });

1 个答案:

答案 0 :(得分:0)

我建议你使用像pug这样的模板引擎。

使用此方法,您将能够发送JSON数据并呈现视图

希望它有所帮助。