gpt4 book ai didi

angular 4-在一个打开的选项卡中注销时在所有选项卡中自动注销

转载 作者:太空狗 更新时间:2023-10-29 18:12:39 26 4
gpt4 key购买 nike

我想在一个打开的选项卡中注销时自动从所有打开的选项卡中注销。

我在登录时将 jwt token 设置为 localStorage,并在注销时删除该 token 。

如何使用存储事件从所有打开的选项卡中注销?

最佳答案

您可以在存储上添加事件监听器:

window.addEventListener('storage', (event) => {
if (event.storageArea == localStorage) {
let token = localStorage.getItem('jwt_token');
if(token == undefined) { // you can update this as per your key
// DO LOGOUT FROM THIS TAB AS WELL
this.router.navigate(['/']); // If you are using router
// OR
window.location.href = '<home page URL>';
}
}
}, false);

关于angular 4-在一个打开的选项卡中注销时在所有选项卡中自动注销,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49820514/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com