我使用后退快捷键手机时如何在root用户中导航并关闭应用程序

时间:2018-07-25 12:20:44

标签: nativescript router back angular2-nativescript

我有这个路由:

const routes: Routes = [
  {
    path: 'home',
    component: HomeComponent,
    canActivate: [AuthGuard],
    children: [
      {
        path: 'fp', component: FirstPageComponent
      },
      {
        path: 'images', component: ImageComponent
      },
      {
        path: 'image/:id', component: ImageComponentgetbyId
      },
      {
        path: 'settings', component: SettingsComponent
      }
    ]
  },
  { path: 'login', component: LoginFirstComponent },
  { path: '', redirectTo: '/home/fp', pathMatch: 'full' },
];

我以fp导航图像,图像/ 1,图像,图像/ 2,图像,图像/ 3,图像,设置,fp。

单击快捷后退按钮电话时,我将逐步浏览所有路线,fp,设置,图像,图像/ 3,图像,图像/ 2,图像,图像/ 1,图像,fp,关闭应用。

单击快捷后退按钮电话时,我要在root用户中导航并关闭应用程序。如果我在image / 1中,我想在image中导航并关闭应用程序。

请问我有什么办法可以实现吗?

0 个答案:

没有答案