3
我有這樣一個組件:Angular2 @Viewchild單元測試
export class ParentComponent implements OnInit, OnDestroy {
@ViewChild(ChildComponent) childComponent: ChildComponent;
}
它是使用childComponent
撥打電話,讓我們這樣說:
this.childComponent.method();
內ParentComponent
方法。
因此,當我試圖測試內部使用ChildComponent
的ParentComponent
方法時,childComponent返回時未定義。
如何解決該問題?