5

单击注销按钮时,我很难删除 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);
};

并使用一个简单的 express - node js cookieParser,其中包含一个秘密。

4

1 回答 1

4

给它负时间,然后将值设置为空。

嗯,试试:

$('button .logout').click(function () {
    $.cookie('userid', "", -1);
});
于 2013-07-15T00:58:57.333 回答