假设我有一个父组件:
@Component({...})
ParentComponent{
}
还有一个子组件:
@Component({...})
ChildComponent{
constructor(parent:ParentComponent){}
}
在子组件中,我可以像上面那样注入ParentComponent
。但是,它提供了类实例,而不是DOM元素。如果我想获得父母的DOM怎么办?
如果我控制了父类,我可以在父组件中注入ElementRef
。但是,如果您无法控制父类,那么情况呢?