[innerHTML]中的Angular routerLink

时间:2017-08-17 14:48:47

标签: angular angular-router

我一直在寻找一种方法来启用标准的[href]链接,以便在动态加载到[innerHTML]时充当routerLinks。它似乎不是标准的东西,我找不到任何我需要的东西。

我有一个有效的解决方案,但想知道是否有人知道有任何更好的方法可以做到这一点或任何潜在的问题,我可能会这样做。

我在app-routing.module.ts中使用jQuery,所以我声明了变量:

declare var $:any;

然后我找到所有具有href属性且没有routerlink属性的锚点。然后我可以获取路径名并告诉路由器在点击时导航到它。

$(document).on('click', `a[href]:not("a[routerlink]"):not("a[href^='mailto:']"):not("a[href^='tel:']")`, function(e){
    if(location.hostname === this.hostname || !this.hostname.length){
        e.preventDefault();
        router.navigate([this.pathname]);
    }
});

这似乎可以完成这项工作,但我认为必须有一个更多的角色'这样做的方式......

1 个答案:

答案 0 :(得分:0)

这可能不是最好的方法,但是您可以使用RendererElementRef将事件监听器添加到锚标记中,如this article中所述。


@Component({
  selector: 'app-example-html',
  templateUrl: './example.component.html',
  styleUrls: ['./example.component.less'],
})
export class ExampleComponent implements AfterContentInit {

  private clickListeners: Array<(evt: MouseEvent) => void> = [];

  constructor(
    private router: Router,
    private el: ElementRef,
    private renderer: Renderer2,
  ) { }

  ngAfterViewInit() {
    const anchorNodes: NodeList = this.el.nativeElement.querySelectorAll('a[href]:not(.LinkRef)'); // or a.LinkPage

    const anchors: Node[] = Array.from(anchorNodes);

    for (const anchor of anchors) {
      // Prevent losing the state and reloading the app by overriding the click event
      const listener = this.renderer.listen(anchor, 'click', (evt: MouseEvent) => this.onLinkClicked(evt));
      this.clickListeners.push(listener);
    }
  }

  private onLinkClicked(evt: MouseEvent) {
    evt.preventDefault();
    if (evt.srcElement) {
      const href = evt.srcElement.getAttribute('href');
      if (href) {
        this.router.navigateByUrl(href);
      }
    }
  }
}