1

我希望我的菜单通过基于当前路线在 menuItem(如 Ng1 中)上应用“活动”类来显示当前路线。

@Component({
  moduleId: module.id,
  selector: 'main-menu',
  directives: [
    ROUTER_DIRECTIVES,
  ],
  template: '
<paper-button #menu1 [data]="['/app/collection']" [routerLink]="['/app/collection']" [ngClass]="{active: isActive(menu1.data)}">My Collection</paper-button>
<paper-button #menu2 [data]="['/app/book/find']" [routerLink]="['/app/book/find']" [ngClass]="{active: isActive(menu2.data)}">Browse Books</paper-button>'
})
export class MainMenuComponent {

  public current:string;

  constructor(public router:Router, private changeDetector:ChangeDetectorRef) {
    this.router.events.subscribe((e)=> {
      this.current = e.url;
    });
  }

  ngOnInit() {
    this.changeDetector.detectChanges();
  }

  isActive(data) {
    if (data) {
      return this.current == data[0];
    }
  }
}

所以这行得通,但有两个问题我需要一些帮助来解决:

1)我需要调用this.changeDetector.detectChanges();否则活动类不适用于页面的初始加载。(我不明白为什么这不是开箱即用的......)

2)关于模板,我还没有找到不在routerLink中重复我自己的方法。我希望能够将 ref 传递给我的数据,menu2.data但它不起作用......

任何帮助/建议将不胜感激谢谢

4

1 回答 1

2

在新路由器中,您可以定义routerLink当路由处于活动状态时应添加的类:

<a [routerLink]="['/app/collection']" [routerLinkActive]="['active']">Home</a>
于 2016-06-27T04:02:16.177 回答