当route.params id更改时,routerLinkActive不会更新超链接

时间:2017-01-17 22:17:05

标签: angular angular2-routing

那是我的傻瓜:

https://plnkr.co/edit/C9W0pHvy27J83m25YUOJ?p=preview

这些是追溯问题的步骤:

  1. 打开项目'无休止'
  2. 网址显示/projects/1/tests然后
  3. “测试链接”以橙色突出显示
  4. 将网址栏中的路线更改为/projects/2/tests
  5. 以前突出显示的“测试链接”现在不再是橙色了。
  6. 为什么通过angular删除活动类?

3 个答案:

答案 0 :(得分:2)

我遇到了这个问题。实际上,我的路线需要从projects/1/test更改为projects/2/test,其中1和2是网址中可能更改的参数。所以我通过以下技术解决了这个问题:

<a routerLink="/projects/:id/test" routerLinkActive="on" 
   [routerLinkActiveOptions]="{ exact: false, __change_detection_hack__: id }">
   Link 
</a>

其中__change_detection_hack__检测到URL中的更改,而id是您的URL参数名称。

注意:如果您要为routerLink设置一些变量,则应该执行以下操作:

<a [routerLink]="myStringVar" routerLinkActive="on" 
   [routerLinkActiveOptions]="{ exact: false, __change_detection_hack__: someVariable }">
   Link
</a>

有关详细讨论,请访问here

答案 1 :(得分:1)

目前这不起作用,请参阅#13865

答案 2 :(得分:0)

***app.module.ts***    


  { path: 'projects', component: ProjectListComponent , children: [
    { path: '', redirectTo: 'tests', pathMatch: 'full' }, /* projects/id causes can not match any route */
    { path: ':id/tests', component: TestsListComponent },
    ]
  },

  { path: '', redirectTo: 'projects', pathMatch: 'full' },
   { path: '**', component: NoRouteFoundComponent } /

];

projects-list.component.html

 <nav style="background:gray;">
      <select (ngModelChange)="onChangeProject($event)" [(ngModel)]="currentProject">
                <option *ngFor="let p of projects" [ngValue]="p">
                    {{p.name}}
                </option>
            </select> 
            <button [disabled]="!currentProject"  (click)="open()">Open project</button>


            <a *ngIf="isMenuVisible" [routerLink]="['/projects', currentProject.id, 'tests']"
    [routerLinkActiveOptions]="{ exact: true, __change_detection_hack__: currentProject.id }" >Tests link
            </a>


        <span>Logged out</span>

您应该添加:  [routerLinkActiveOptions] =“ {准确:正确, change_detection_hack :currentProject.id}”