我确实有以下(伪)代码
<some-component #someComponent/>
<another-component [reference]="someComponent" />
@Component(...)
export class AnotherComponent {
@Input() reference // <--- type
}
我现在的问题是:Input
reference
是什么类型?我没有在文档中找到任何东西。 (据我所知)不是ElementRef
。然后,我确实想访问传递的nativeElement
的{{1}}。
答案 0 :(得分:2)
如果始终为#someComponent
,则可以只使用SomeComponentComponent
或调用类。
如果是动态的,则可以使用TemplateRef<any>