2
我設置上app.module.ts
以下路線RouterModule
:路由路徑「/」到分量,突出菜單項基於routerLinkActive
RouterModule.forRoot([
{ path: 'inbox', component: InboxComponent },
{ path: 'report/request', component: RequestReportComponent },
{ path: 'report/create', component: CreateReportComponent },
{ path: '', component: InboxComponent }
])
和我打印出我用下面的模板菜單:
<div *ngFor="let item of menuItems">
<li routerLinkActive="active">
<a [routerLink]="item.href">
<i class="{{ item.iconClasses }}"></i>
<span class="menu-item-key">
{{ item.name }}
</span>
</a>
</li>
</div>
因此,當我使用默認路徑/
打開頁面時,它正確映射到默認組件,但<a>
標記突出顯示不起作用,因爲它可能期望它匹配/inbox
明確:
不過,如果我選擇映射到/inbox
,突出按預期工作(並更改網址爲好)的菜單項。
什麼,使這項工作是推薦的方式?有沒有什麼方法可以實現這一目標,或者有任何必要的解決方法?
非常感謝,它的工作原理。這種策略(重定向到組件,最終更改url)推薦使用angular2路由器嗎? – everton
是的。 https://angular.io/docs/ts/latest/guide/router.html#!#redirect –