标签: typescript angular6
我想控制我的Angular 6 Web应用程序。
如果用户刷新屏幕,我想给他们警报。该怎么做?
答案 0 :(得分:1)
您可以使用窗口功能
window.onbeforeunload = function(e) { var dialogText = 'Dialog text here'; e.returnValue = dialogText; return dialogText; };
了解更多here
如果您不想在角度内使用全局窗口,请阅读this blog