新しいルーターで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 に問い合わせる方法がわかりません。
手伝ってくれませんか?