我正在尝试将 Angular 2 rc-4 与新路由器一起使用。
export const appRoutes:
RouterConfig =[
{
path: "",
component: HomeComponent,
terminal: true,
data: {
title: "Home"
}
},
{
path: "Users",
component: UserListComponent,
data: {
title: "Users"
}
},
{
path: "Users/:id",
component: UserEditComponent,
data: {
title: "Edit User"
}
}
];
然后我订阅更改路线事件。当事件触发时,我想从中查找项目
appRoutes
问题在于带有参数的url:
Users/:id
我不知道如何将其与当前页面 url 进行比较或如何询问 RouterConfig。
你能帮我么?