我试图用角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比较。
你能帮我么?