我有一个像这样引用子组件的组件
cc: TheChildComponent;
@ViewChild('theChildComponent') set details(content: TheChildComponent) {
this.cc = content;
};
TheChildComponent 是一个复杂的组件,具有多个 dom 元素和一组数据,这些数据通过 rest 调用异步更新。
每当我检测到 TheChildComponent 中的数据数组发生更改时,我都想更新我的变量 this.cc。
我不知道该怎么做,或者是否可能。