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路由详解四(子路由)的主要内容,如果未能解决你的问题,请参考以下文章

Angular 2:如何将路由参数传递给子路由?

Angular6路由器导航到共享相同组件的多个子路由

在 Angular 2 中,如何使用父路由确定子路由中的活动路由?

快速入门!详解 Angular2 路由的分类及使用!

Angular 6子路由不起作用

Angular默认子路由未加载父组件