How to handle / prevent browser navigation or reload in angularjs?

后端 未结 2 1104
囚心锁ツ
囚心锁ツ 2020-12-15 19:22

I would like to detect in my angular app when a user is navigating away from or reloading a page.

App (that uses some login process) should then distinguish that it

相关标签:
2条回答
  • 2020-12-15 20:10

    All of your javascript and in memory variables disappear on reload. In js, you know the page was reloaded when the code is running again for the first time.

    To handle the reload itself (which includes hitting F5) and to take action before it reloads or even cancel, use 'beforeunload' event.

    var windowElement = angular.element($window);
    windowElement.on('beforeunload', function (event) {
        // do whatever you want in here before the page unloads.        
    
        // the following line of code will prevent reload or navigating away.
        event.preventDefault();
    });
    
    0 讨论(0)
  • 2020-12-15 20:17

    I had the same problem, but Ben's answer didn't work for me.

    This answer put me on the right track. I wanted to add a warning on some states but not all of them. Here is how I did it (probably not the cleanest way) :

    window.onbeforeunload = function(event) {
       if ($state.current.controller === 'ReloadWarningController') {
          // Ask the user if he wants to reload
          return 'Are you sure you want to reload?'
       } else {
          // Allow reload without any alert
          event.preventDefault()
       }
     };
    

    (in the ReloadWarningController definition, which had the $state injected)

    0 讨论(0)
提交回复
热议问题