点击退出按钮时,我很难删除cookie。我目前有一个注销按钮,其中包含类注销。这是我试图删除cookie的简单jquery行,但它无效。
$('button .logout').click(function () {
$.cookie('userid', null);
};
userid是cookie的名称。
哦,我正在使用已签名的cookie,不确定是否会改变任何内容?
编辑:
以下是我设置cookie的方法:
exports.loginPost = function(req, res, next) {
console.log("here 1");
passport.authenticate('local', function(err, user, info) {
if (err) { return next(err) }
if (!user) {
return res.render('loginError', {title: 'Weblio'}); }
req.logIn(user, function(err) {
if (err) { return next(err); }
console.log(JSON.stringify(user));
res.cookie('userid', user._id, { maxAge: 900000, signed: true });
res.redirect('userProfile');
});
})(req, res, next);
};
使用一个简单的表达式 - 节点js cookieParser,其中包含一个秘密。
答案 0 :(得分:3)
给它消极时间,只需将值设置为空。
嗯,试试:$('button .logout').click(function () {
$.cookie('userid', "", -1);
});