使用vs代码应用程序在angular7中使用多个路由器

时间:2019-05-23 06:39:51

标签: angular7-router

我创建带有路由的组织模块,并且如果我单击组织,并且如果雇员还具有关于详细信息的导航,创建雇员等的功能,则我想在列表中显示雇员列表。

我使用路由制作组织模块,还创建组织的组成部分

* org.html

组织1

* org.routing.module.ts

const orgRoutes:路由= [   {     路径:“,     组件:OrganizationComponent,pathMatch:“完整”,     儿童:[       {         路径:“,         儿童:[           {路径:“ create-emp”,组件:CreateEmpComponent},           {path:'archive-emp',component:ArchiveEmpComponent},           {path:'emp-detail',component:EmpDetailsComponent},           {path:”,组件:EmpListComponent}         ]       }     ]   } ];

* app.routing

{   路径:“ org”,   loadChildren:“ ./ org / org.module#OrgModule” }

我想要组织/ emp-list / emp-details或create-emp 在网址中

0 个答案:

没有答案