ng.getContext
如果在嵌入式视图中(例如 *ngIf
或 *ngFor
),则检索元素所属的嵌入式视图的上下文。否则,检索其视图中拥有该元素的组件的实例(在这种情况下,其结果与调用 getOwningComponent
相同)。
If inside an embedded view (e.g. *ngIf
or *ngFor
), retrieves the context of the embedded view that the element is part of. Otherwise retrieves the instance of the component whose view owns the element (in this case, the result is the same as calling getOwningComponent
).