我想在angularjs 1.4应用程序中使用browser / f5按钮阻止页面刷新。我已经通过了其他SO答案。我使用下面的代码段。但是,它不起作用。有人能说出它的错误吗?
app.run(function($window){
var windowElement = angular.element($window);
windowElement.on('beforeunload', function (event) {
// do whatever you want in here before the page unloads.
event.returnValue = "Refresh is disabled";
// the following line of code will prevent reload or navigating away.
event.preventDefault();
});
})
其中app
是角度模块