我使用了@ViewChildren 组件:
@ViewChildren("MyTest2Component") public myTest2Component: QueryList<MyTest2Component>
public ngAfterViewInit() {
this.myTest2Component.changes.subscribe((comps: QueryList <MyTest2Component>) =>
{
console.log(comps.first.data); // data is async, here is undefind
});
}
但是当尝试调用异步变量数据时,返回undefind
我能做些什么来解决这个问题?