那是我的傻瓜:
https://plnkr.co/edit/C9W0pHvy27J83m25YUOJ?p=preview
这些是追溯问题的步骤:
/projects/1/tests
然后/projects/2/tests
为什么通过angular删除活动类?
答案 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}”