我使用express + node.js和我有一個req對象,在瀏覽器中的請求是/帳戶,但是當我登錄req.path我得到'/' - - 不是'/賬戶'。如何獲得請求路徑與快遞請求對象
//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?
嘗試'req.route.path' – vinayr
'類型錯誤:undefined' – chovy
req.route.path無法讀取屬性「路徑」是正確的和記錄[點擊這裏](http://expressjs.com/api.html#req.route)。您使用哪種版本的快遞? – zemirco