如何使用Express Req对象获取请求路径

我正在使用express + node.js,并且我有一个req对象,浏览器中的请求是/ account,但是当我登录req.path时,我得到的是'/'---不是'/ account'。

  //auth required or redirect
  app.use('/account', function(req, res, next) {
    console.log(req.path);
    if ( !req.session.user ) {
      res.redirect('/login?ref='+req.path);
    } else {
      next();
    }
  });

req.path是/何时应该是/ account?

飞云2020/04/03 10:43:32

自己玩了一些游戏之后,应该使用:

console.log(req.originalUrl)

JinJin2020/04/03 10:43:32

它应该是:

req.url

快递3.1.x

斯丁2020/04/03 10:43:32

在某些情况下,您应该使用:

req.path

这为您提供了路径,而不是完整的请求URL。例如,如果您只对用户请求的页面感兴趣,而不对URL的所有参数感兴趣:

/myurl.htm?allkinds&ofparameters=true

req.path将为您提供:

/myurl.html