How to set default login page and after login open tabs in ionic-4

后端 未结 3 1983
花落未央
花落未央 2021-01-06 06:05

I am creating ionic tabs project and I want to set in default login page then after open tabs . I am set in default login page but after login i am not getting tabs in ion

3条回答
  •  庸人自扰
    2021-01-06 06:42

    app-routing.module.ts

    ...

    const routes: Routes = [
      { path: '', redirectTo: 'login', pathMatch: 'full' },
      { path: 'tabs', loadChildren: './tabs/tabs.module#TabsPageModule' },<--here
      { path: 'login', loadChildren: './login/login.module#LoginPageModule' },
    ];
    

    tabs.router.module.ts

    ...

    const routes: Routes = [
      {
        path: '',<--here
        component: TabsPage,
        children: [
          {
            path: 'tab1',
            children: [
              { path: '', loadChildren: '../tab1/tab1.module#Tab1PageModule'}
            ]
          },
          ...
          { path: 'tabs', redirectTo: '/tabs/tab1', pathMatch: 'full'}<--here
        ]
      }
    ];
    

    ...

    navigate with: this.router.navigate(['tabs']);

提交回复
热议问题