我想使用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。
答案 0 :(得分:31)
如果要获取承载组件或指令的元素的引用,则需要指定您希望元素而不是组件或指令
@ViewChild('alert', { read: ElementRef }) alert:ElementRef;
另见angular 2 / typescript : get hold of an element in the template
在您的情况下,我猜您需要两个不同的@ViewChild()
组件引用才能访问show()
方法,第二个方法可以访问DOM属性。