android - 在 Ionic 4 中处理后退按钮的问题
<p><p>当我在 android 上构建并运行我的应用程序时,我意识到硬件后退按钮不起作用。
我有主页,它有两个 child ,一个主页和一个收藏页面,主页是默认页面。
如果我在收藏夹页面并单击后退按钮,它会将我带到主页,但从主页上,如果我单击后退按钮,它会显示白屏并在几秒钟后重新启动应用程序。
如果我单击它三下,我将只能关闭该应用程序。
我正在使用 ionic 4,Angular 8。</p>
<p>这是我的应用程序路由的样子:</p>
<pre><code>{ path: '', loadChildren: './pages/main/main.module#MainPageModule' },
{ path: 'search', loadChildren:
'./pages/search/search.module#SearchPageModule' },
{ path: 'catalog-view', loadChildren: './pages/cat-view/cat-
view.module#CatViewPageModule' },
</code></pre>
<p>这是我的主模块的样子:</p>
<pre><code>const routes: Routes = [
{
path: 'main',
component: MainPage,
children: [
{ path: 'home', loadChildren: '../home/home.module#HomePageModule' },
{ path: 'favorites', loadChildren:
'../favorites/favorites.module#FavoritesPageModule' },
]
},
{
path: '',
redirectTo: '/main/home'
}
];
</code></pre>
<p>我尝试在主页中添加此功能,然后是主页面,甚至是 App 组件,但没有任何效果:</p>
<pre><code>ionViewDidEnter(){
this.subscription = this.platform.backButton.subscribe(()=>{
navigator['app'].exitApp();
});
}
ionViewWillLeave(){
this.subscription.unsubscribe();
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我得到了它的工作,这个问题非常愚蠢。
我不得不将我的包更新到最新版本,尤其是@ionic-native/core。
在我的 home.ts 中,我只是这样做:</p>
<pre><code>ngOnInit(){
this.platform.backButton.subscribe(() => {
this.platform.backButton.unsubscribe();
navigator['app'].exitApp();
})
)
</code></pre>
<p>希望对你有帮助!</p></p>
<p style="font-size: 20px;">关于android - 在 Ionic 4 中处理后退按钮的问题,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/57515194/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/57515194/
</a>
</p>
页:
[1]