我可以使用诸如ContentChild(ren)
或ViewChild(ren)
之类的查询来查询HelloComponent
的本地模板变量#queryMeFromDirective
喜欢:
@ViewChild('queryMeFromDirective', {static: true}) myEl: ElementRef
在QueryDirective
中使用它时,我可以得到相同的结果。
我可以像注入主机一样
@Host() @Self() @Optional() public helloComponent : HelloComponent
所以我应该以某种方式获得访问权限:/。
有什么想法吗?
这个问题是关于从指令中查询主机组件视图 DIRECTLY 。