我正在使用angular2,我在项目中使用了痕迹。以下是我的路由器。
const routes: Routes = [
{
path: "Home",
component: RootComponent,
children: [
{
path: "Create/:Type",
component: CreateComponent,
data: {
breadcrumb: "Create"
}
},
{
path: "Edit/:id",
component: EditComponent,
data: {
breadcrumb: "Edit"
}
}
]
},
];
所以我的面包屑可能就像主页\创建或主页\编辑。我的要求是,在创建的情况下,还传递一个名为'Type'的参数。我可以将其价值与面包屑一起整合。例如:Type ='Profile',然后面包屑将类似于 Home \ Create-Profile 。请帮帮我。