【发布时间】:2016-10-05 04:26:52
【问题描述】:
我的意思是,我想跟踪用户何时离开应用、关闭浏览器或标签页。
Components and Directives有一个生命周期钩子,叫做ngOnDestroy,当组件被销毁时调用,但是当用户离开应用时却捕捉不到
import { Component, OnInit } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'app',
templateUrl: 'app.component.html'
})
export class AppComponent implements OnDestroy {
constructor() { }
ngOnDestroy() {
alert(`I'm leaving the app!`);
}
}
如果用户关闭浏览器,则不会执行警报。
【问题讨论】:
标签: angular