填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

ng.getContext

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).

ng.getContext<T>(element: Element): T | null
      
      ng.getContext<T>(element: Element): T | null
    
参数
element Element

Element for which to get the surrounding component instance.

返回值

T | null: Instance of the component that is around the element or null if the element isn't inside any component.