Ionic run function before app closes

前端 未结 2 1316
离开以前
离开以前 2021-02-20 11:52

Is there some kind of function that I can call that listens to whether the app is about to exit, or close or go into the background.. Basically any event that means \"the user h

2条回答
  •  长发绾君心
    2021-02-20 11:55

    This code works in ionic2 native app exit and in the browser as well. In the browser, this happens when the URL reload button is pressed or the browser tab is closed.

    platform.pause.subscribe(e => {
      this.OptionsSave();
    });
    
    window.addEventListener('beforeunload', () => {
      this.OptionsSave();
    });
    

提交回复
热议问题