@Ionic_Newb wrote:
I’m working on an app that has the following use case which I’m not sure how to implement.
I’m on a page that display a list of Game/Match Results. When I click on that particular Game I want to be brought to a more detailed page for that Game, however this Detailed page is a tabs page (has 2 tabs on it).
Here’s the code in my List of Games page:
<ion-card *ngFor="let match of matches; let i = index" tappable routerLink="/../match-details/match-details-info/{{match.id}}"
Once I click on that ion-card I want to be brought to a page that has tabs - I imagine the URL should look something like /match-details/match-details-info/XYZ1234345 but I’m not sure how to get there.
Here is my match-details-routing.module.ts:
import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { MatchDetailsPage } from './match-details.page'; const routes: Routes = [ { path: '', component: MatchDetailsPage, children: [ { path: 'match-details-info/:id', children: [ { path: '', loadChildren: '../match-details-info/match-details-info.module#MatchDetailsInfoPageModule' } ] }, { path: 'match-details-lineup/:id', children: [ { path: '', loadChildren: '../match-details-lineup/match-details-lineup.module#MatchDetailsLineupPageModule' } ] }, { path: 'match-details-scorers/:id', children: [ { path: '', loadChildren: '../match-details-scorers/match-details-scorers.module#MatchDetailsScorersPageModule' } ] }, { path: '', redirectTo: '/match-details/match-details-info', pathMatch: 'full' } ] }, { path: '', redirectTo: '/match-details/match-details-info', pathMatch: 'full' } ]; @NgModule({ imports: [RouterModule.forChild(routes)], exports: [RouterModule] }) export class MatchDetailsPageRoutingModule {}
Here is the error I’m seeing
Error: Cannot match any routes. URL Segment: 'match-details/match-details-info/inhOKexG3AtcJNnj0xyW' Error: Cannot match any routes. URL Segment: 'match-details/match-details-info/inhOKexG3AtcJNnj0xyW'
The url looks correct to me but for some reason it can not match the route.
Also including part of the app-routing.module.ts
import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { AuthGuard } from './services/user/auth.guard'; const routes: Routes = [ { path: '', loadChildren: './tabs/tabs.module#TabsPageModule' }, { path: 'match-details/:id', loadChildren: './pages/match-details/match-details.module#MatchDetailsPageModule' }, { path: 'player-details/:id', loadChildren: './pages/player-details/player-details.module#PlayerDetailsPageModule' }, { path: 'login', loadChildren: './pages/login/login.module#LoginPageModule' }, //{ path: 'admin-home-tabs, loadChildren: './pages/admin-home-tabs/admin-home-tabs.module#AdminHomeTabsPageModule' }, { path: 'reset-password', loadChildren: './pages/reset-password/reset-password.module#ResetPasswordPageModule' },
Would love some help with this. Thanks
Posts: 2
Participants: 2