好的,基本上我已经运行了 Express 4,我想在每个页面上获取 cookie 的值,我觉得 app.locals 非常适合这个,但我无法让它在 app.js 中获取 cookie 值
我试过了
app.use(function(req,res,next){
app.locals.uid = req.cookies['uid']
}
但是,它使我的页面都没有加载,所以有人对此有一些经验吗?
改用 res.locals ( http://expressjs.com/4x/api.html#res.locals ) - app.locals 对于所有应用程序都是相同的, res.locals 对于每个请求都是唯一的