如何在sh-4.4$
# type here
ssh-4.4$ ssh-keygen -t rsa -b 4096 -C "example@example.com"
中编写窗口关闭事件处理程序,我的意思是关闭不刷新。
所以我不能使用Angular 2
答案 0 :(得分:5)
试试这样:
import { HostListener } from '@angular/core';
@HostListener('window:beforeunload', ['$event'])
beforeUnloadHander(event) {
return false;
}