我有一个3rd party组件,其中嵌套了另一个子组件。如何获得作为组件实例的引用?我不想要nativeElement或ElementRef引用,我知道如何获得它。
<parent>
<some-child>
<another-child>
</another-child>
</some-child>
我的父母有:
@ViewChild(SomeChildComponent) someChild: SomeChild;
以上工作正常,但我需要获得对AnotherChildComponent的引用。请注意,我没有能力修改SomeChild的来源,否则这将是微不足道的。我需要从父母那里查询嵌套的孩子。看起来ViewChild / ViewChildren仅查询直接子级,而ContentChild仅查询已包含的内容,因此无济于事。