angular路由详解四(子路由)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular路由详解四(子路由)相关的知识,希望对你有一定的参考价值。
子路由是相对路由
路由配置部分:
主要是children
const routes: Routes = [
{path:‘home‘, component: HomeComponent,
children:[
{
path:‘homeDetail/:id‘,
component:HomeMenuComponent
},{
path:‘‘,
component:HomeListComponent
}
]
}
]
第一种是通过标签跳转
这里是./(相对路径)不是/(绝对路径)
<a [routerLink] = "[‘./homeDetail‘,10]">haha</a>
第二种是点击按钮通过Router路由子界面
import { Router,ActivatedRoute } from "@angular/router";
constructor(private router: Router,private routeInfo:ActivatedRoute){}
nav():void {
this.router.navigate([‘homeDetail‘,100],{relativeTo:this.routeInfo});
}
以上是关于angular路由详解四(子路由)的主要内容,如果未能解决你的问题,请参考以下文章