Я определил свои маршруты так:
const routes: Routes = [
{ path: '', loadChildren: './tabs/tabs.module#TabsPageModule' },
{ path: 'faq', loadChildren: './faq/faq.module#FaqPageModule' },
{ path: 'terms', loadChildren: './terms/terms.module#TermsPageModule' }
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule {}
и вот так:
const routes: Routes = [
{
path: 'tabs',
component: TabsPage,
children: [
{
path: '',
redirectTo: '/tabs/(list:list)',
pathMatch: 'full',
},
{
path: 'list',
outlet: 'list',
component: ListPage
},
{
path: 'profile',
outlet: 'profile',
component: ProfilePage,
canActivate: [AuthGuardService]
}
]
},
{
path: '',
redirectTo: '/tabs/(list:list)',
pathMatch: 'full'
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class TabsPageRoutingModule {}
Мне интересно, как я могу перейти к ListPage или ProfilePage, используя метод маршрутизатора .navigate()
в компоненте или routerLink
в некотором элементе html.
Я пробовал что-то подобное
this.router.navigate(['tabs/profile']);
или
this.router.navigate(['profile']);
или
this.router.navigate(['tabs(profile:profile)']);
и получил эту ошибку:
Ошибка: невозможно сопоставить ни один маршрут. Сегмент URL: ''