看了nodeclub的代码,
app.js中有两句话: // custom middleware app.use(routes.auth_user); app.use(express.csrf());
sign.js中有auth_user的设置 exports.auth_user = function(req,res,next)
这个起什么作用,是为了保持用户登录状态吗?哪位大侠解释一下。
3 回复
看了nodeclub的代码,
app.js中有两句话: // custom middleware app.use(routes.auth_user); app.use(express.csrf());
sign.js中有auth_user的设置 exports.auth_user = function(req,res,next)
这个起什么作用,是为了保持用户登录状态吗?哪位大侠解释一下。