Angular:在ViewChild上未定义nativeElement

时间:2017-08-28 14:51:53

标签: angular

我想使用ViewChild访问组件的DOM。但是当我尝试访问nativeElement属性时,它是undefined

以下是摘录。

import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { AlertComponent } from './alert.component';

@Component({
    selector: 'app-root',
    template: `
    <app-alert #alert>My alert</app-alert>
      <button (click)="showAlert()">Show Alert</button>`
})
export class AppComponent implements AfterViewInit {
  @ViewChild('alert') alert;

  showAlert() {
    console.log('alert (showalert)', this.alert.nativeElement);
    this.alert.show();
  }

  ngAfterViewInit() {
    console.log('alert (afterviewinit)', this.alert.nativeElement);
  }
}

请查看plunk

1 个答案:

答案 0 :(得分:31)

如果要获取承载组件或指令的元素的引用,则需要指定您希望元素而不是组件或指令

@ViewChild('alert', { read: ElementRef }) alert:ElementRef;

另见angular 2 / typescript : get hold of an element in the template

在您的情况下,我猜您需要两个不同的@ViewChild()组件引用才能访问show()方法,第二个方法可以访问DOM属性。

Plunker example