标签: angular
是否可以通过某种引用访问表示DOM中Angular组件的对象并对其进行调用的方法?
答案 0 :(得分:0)
尝试
html
<component></component> <div *ngIf="componentObj"> componentObj.Method() </div>
打字稿
@ViewChild(component) public componentObj: ComponentType;