gpt4 book ai didi

javascript - Angular2 onbeforeunload

转载 作者:行者123 更新时间:2023-11-30 09:49:29 24 4
gpt4 key购买 nike

每当我的应用程序关闭时,我想销毁保存在 localStorage 中的 token 。以前我会做这样的事情:

window.onbeforeunload = function (event) {
    localStorage.removeItem('token');
};

我不确定如何在 Angular2 中获得此功能或将代码放在哪里以便它在应用程序关闭时执行。我的直觉告诉我将它放在我的应用程序级别组件中,但我无法通过谷歌搜索答案。

最佳答案

您可以使用 OnDestroy 接口(interface)执行此操作:

import { Component, OnDestroy } from '@angular/core';

class MyComponent implements OnDestroy {
ngOnDestroy(): void {
// Your code here
}
}

示例基于 TypeScript。

文档:onDestroy

关于javascript - Angular2 onbeforeunload,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37211127/

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