По умолчанию я хочу, чтобы браузер переходил к LandingPageComponent при открытии.
например, http://localhost: 4200 /
Когда пользователи ввод после sla sh, я хочу перейти к ProfileComponent с параметрами в URL
например, http://localhost: 4200 / user1
возможен ли этот метод? Так как я получаю сообщение об ошибке «Путь не может начинаться с sla sh».
app-routing.module.ts
const routes: Routes = [
{path:'', component:LandingPageComponent},
{path: '/:profileId',
loadChildren: './profile/profile.module#profileModule'
},
];
profile-routing.module.ts
const routes: Routes = [
{path:'', component:profileComponent}, //< I want to load this component after /user1
{path :'folder/:folderId', component:FolderComponent},
];