如何在使用ionic2退出应用程序时清除localStorage

时间:2016-10-12 07:57:21

标签: angular ionic2

我想知道如何使用硬件后退按钮确定退出应用程序的时间,并最终清除我的localStorage数据。

我需要这个主要有三个原因: 1.询问用户他/她是否真的要退出应用程序 2.清除缓存的数据 3.强制用户始终在应用程序启动时登录 - 因为它是财务应用程序。

由于

1 个答案:

答案 0 :(得分:0)

用于确定退出应用程序的时间。您必须参考this link

使用registerBackButtonAction()方法来处理后退硬件。

例如:在app.ts文件中

initializeApp() {
this.platform.ready().then(() => {
  // Okay, so the platform is ready and our plugins are available.
  // Here you can do any higher level native things you might need.
  this.platform.registerBackButtonAction(() =>{
    // 1. Ask the user if he/she really wants to exit the application
    //2. Clear cached data
    //3. Force the user to always login anytime the application is started
    return;
  });
  StatusBar.styleDefault();
});
}

振作!