我正在使用本地护照和快速会话但我的问题是,当我输入一个地址时,在我关闭会话后,我遇到问题浏览器“页面没有正确重定向”,所以我想做什么重定向到地址/登录而不是显示该问题
我会留下我的代码
Routes.js
app.get('/index', isLoggedIn, function(req, res) {
console.log(req.session);
if (req.session == null || req.session == undefined)
{
res.redirect('/login');
}
else
{
res.render('index.ejs', {
user : req.user // get the user out of session and pass to template
});
}
});
app.js
app.use(session({
secret : 'asjdknas',
}));
app.use(passport.initialize());
app.use(passport.session());
app.use(flash());
更新已解决
验证我在app.get call中调用了函数
函数isLoggedIn(req,res,next){
if(req.isAuthenticated()) 返回next();
Res.redirect('/ login'); }
答案 0 :(得分:0)
尝试使用return res.redirect
代替res.redirect
并告诉我会发生什么。 (渲染相同)
另外,console.log(req.session)
会给你什么?
答案 1 :(得分:0)
护照中有一个内置函数req.isAuthenticated()