注销cookie未清除后的Angular 2

时间:2017-03-16 05:13:38

标签: angular cookies asp.net-core

在服务器端,我已清除了当前请求的cookie,但未在浏览器中清除cookie。

public async void LogOut()
    {
        await HttpContext.Authentication.SignOutAsync("_FO");
    }

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试从本地存储中删除:

localStorage.removeItem('_FiFo');
localStorage.removeItem('uniq_expire');

也许不是最好的方式。