Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试将 restify 与连接会话中间件一起使用时出现错误。会话中间件需要 req.originalUrl 但 restify 没有设置该属性。(它只设置 req.url)这导致会话代码中出现异常。有什么解决方法吗?
谢谢,沙拉特
你可以自己设置吗?
app.use(function(req, res, next){ req.originalUrl = req.url; next(); }); app.use(connect.session({secret:'foo'});