const routes:Routes = [
{path:'', redirectTo: '/home', pathMatch:'full'},
{path:'home', component: HomeComponent }, // 默认展示HomeComponnet
{path:'**', component: Code404Component}
];
pathMatch:'full' 访问路径精准
2.子路由
前提:生成两个组件BuyerListComponent,SellerListComponent,将这两个组件显示在股票详情组件之内。
const routes: Routes = [
{path: '', redirectTo: '/home', pathMatch: 'full'},
{path: 'home', component: HomeComponent },
{
path: 'stock/:id', component: StockComponent, data: [{isPro: true}],
children: [
{path: '', component: BuyerListComponent},
{path: 'seller/:id', component: SellerListComponent}
],
},
{path: '**', component: Code404Component}
];
在股票详情模板中
注意 (1)子路由可以无限级的嵌套的
(2)一个组件可以是一个主组件,也可以是子组件
3.辅助路由
(1)声明一个辅助路由,需要三步:
step1 :
在组件模板上声明一个主插座,和一个带有name属性的插座,如下所示:
主插座
辅助插座
step2:
在路由配置上需要配置这个叫“aux”的插座可以显示哪些组件,如下:
{path:'xxx',component:XxxComponent,outlet:'aux'}
{path:'yyy',component:YyyComponent,outlet:'aux'}
step3:
在路由导航时,在路由到某一个地址时,
Xxx
yyy
注解:
(2)举例实现辅助路由
A 实现思路一: 在app.component.html
主页
股票详情
B 生成新的咨询组件 consult
其次配置路由:
{path: 'consult', component: ConsultComponent, outlet: 'aux'},
C 在app.component.html加入:
主页
股票详情
开始咨询
结束咨询
此时,完成实现辅助路由
开始咨询
点击开始咨询主路由跳到home组件上