Heim > Fragen und Antworten > Hauptteil
我的应用是由node和express搭建的,执行下面代码,其中 xxxxx 是 httpOnly 的,结果是:uname 删除了,xxxxx没有被删除。所以,不能删除 httpOnly 的 Cookie?
res.clearCookie('uname');
res.clearCookie('xxxxx');
大家讲道理2017-04-17 13:12:41
把你path也加上,例如
res.clearCookie('xxxxx', { path: '/' });
还是不行就把过期时间设为-1
res.cookie('xxxxx', '', { expires: -1, path: '/' });