在服务器端,我已清除了当前请求的cookie,但未在浏览器中清除cookie。
public async void LogOut()
{
await HttpContext.Authentication.SignOutAsync("_FO");
}
答案 0 :(得分:0)
尝试从本地存储中删除:
localStorage.removeItem('_FiFo');
localStorage.removeItem('uniq_expire');
也许不是最好的方式。