答案 0 :(得分:1)
你读过教程吗?如果是,那么问题是什么?
您需要配置||
Routes
个Route
对象数组:
const routes: Routes = [
{ path: 'lazysalim', component: LazySalimComponent }
];
Path
是表示网址中路由的字符串,component
是您在此网址上显示的关联组件。
通过app.module.ts
方法将其添加到模块(可能是forRoot
):
imports: [
...,
RouterModule.forRoot(routes)
]
您需要在模板中添加<router-oultet></router-oultet>
。它充当锚点,与匹配URL关联的组件将显示在此锚点下方。
您需要一个按钮或其他东西来导航到这些路径。你可以使用
<a [routerLink]="['lazysalim']">
您将被导航到url / lazysalim`作为按钮。或者
this.router.navigate(['lazysalim'])`.
我希望你的时间不会太长:\