我真的不知道为什么“发布请求”以及以下重定向和“渲染”不起作用。这是我的代码:
HTML:
$(function () {
$LogOutButton.click(function () {
$.ajax({
type: "POST",
url: "/logout"
});
});
});
APP.js
app.get('/login',function (req, res) {
if (req.isAuthenticated() && req.user.name != "admin") {
res.redirect('/ImpleniaViewer');
}
else {res.render('Login.hbs');}});
app.get('/logout', function (req, res) {
res.send("Hallo");
});
app.post('/logout', function (req, res) {
req.session.destroy(function (err) {
res.redirect('/logout'); //Inside a callback… bulletproof!
});
});
答案 0 :(得分:0)
只需使用req.logout()
从代码中的本地请求中删除req.user
。
您的代码。
app.post("/logout", function(req, res) {
req.logout();
req.session.destroy();
res.redirect("/logout");
});