8
วิธีรับพา ธ การร้องขอด้วยอ็อบเจกต์ req ด่วน
ฉันกำลังใช้ express + node.js และฉันมีวัตถุ req คำขอในเบราว์เซอร์คือ / account แต่เมื่อฉันเข้าสู่ 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 คือ / เมื่อควรจะเป็น / บัญชี ??
158
javascript
node.js
express