作为输入传递的模板引用变量的类型是什么?

时间:2020-08-11 05:46:42

标签: angular

我确实有以下(伪)代码

<some-component   #someComponent/>

<another-component [reference]="someComponent" />
@Component(...)
export class AnotherComponent {
 @Input() reference     // <--- type
}

我现在的问题是:Input reference是什么类型?我没有在文档中找到任何东西。 (据我所知)不是ElementRef。然后,我确实想访问传递的nativeElement的{​​{1}}。

1 个答案:

答案 0 :(得分:2)

如果始终为#someComponent,则可以只使用SomeComponentComponent或调用类。 如果是动态的,则可以使用TemplateRef<any>