:component.ts中的host等效项

时间:2017-11-17 12:57:52

标签: angular

component.css中,您可以使用<component>选择器访问:host代码。 有没有直接的方式在component.ts文件中访问它?

我知道使用ViewChildparentElement,是否有更直接的方法来获取主机DOM元素?

1 个答案:

答案 0 :(得分:2)

你可以注射它

class MyComponent {
  constructor(private elRef:ElementRef) {}

  ngAfterViewInit() {
    this.elRef.nativeElement...
  }
}