window.location.href 更改后自动清除本地存储

Local storage got cleared automatically after window.location.href change

Ajax(){
...............
...............
success :function(response){
localStorage.setItem("token", response['token'])
 window.location.href="https://www.example.com/profiler/"
}

}

上面是我重定向到配置文件页面本地存储(令牌)行本身被删除后的代码片段。

有没有人遇到过这个问题,或者你能帮我解决一下吗?

在 window.location.href 中提供 https: domain.com 视为不同来源,因此本地存储将在页面加载时刷新。

window.location.href="https://www.example.com/profiler/"

改为使用以下内容:-

window.location.href="/profiler/"