从事项目并陷入问题:
硬件后退按钮重装应用程序(我在此应用程序中使用Angular Router)。
我的退出应用程序代码:
ionViewDidEnter(){ this.subscription = this.platform.backButton.subscribe(()=>{ navigator['app'].exitApp(); }); } ionViewWillLeave(){ this.subscription.unsubscribe(); }
同时在其他应用程序中工作。但在此应用程序中,其重新加载应用程序不会退出。
PS:我也试过了,platform.ready()
但是没有运气。