摘要:
子路由是相对路由 路由配置部分: 主要是children const routes: Routes = [ {path:'home', component: HomeComponent, children:[ { path:'homeDetail/:id', component:HomeMenuCo 阅读全文
摘要:
我们经常用路由传递参数,路由主要有三种方式: 第一种:在查询参数中传递数据 {path:"address/:id"} => address/1 => ActivatedRoute.param[id] 在路由中传递 <a [routerLink] = "['/address',1]"></a> 点击事 阅读全文