在我的应用程序组件中,我有一个手风琴,用户选择的菜单的 ID 将通过使用 ngOnChanges 传递给子组件,从子组件调用基于应用程序组件选择的菜单 ID 的 API。
手风琴结构类别、组、子组
在这里我要做的是,当用户选择一个类别、组和子组时,该 ID 被传递给子组件并且 API 也被调用。
让我们分别假设第一个选择的 ID (100,101,102)
现在用户选择同一类别下的另一个组,现在通过传递错误的 ID (100,200,102) 调用 API,这里用户没有选择任何子组,但该值取自先前的值。
那么我该怎么做以下
- 1、用户选择新组时清除子组值。
- 2,当用户选择新的类别时清除组值。
堆栈闪电战文件:
编辑 :
ngOnChanges(changes: SimpleChanges) {
if (changes['C_code'].currentValue != "") {
this.a = changes['C_code'].currentValue ;
if (this.a != changes['C_code'].previousValue) {
this.G_code = "";
this.SG_code = "";
}
}
if (changes['G_code'].currentValue != "") {
this.b = (changes['G_code'].currentValue);
if (this.b != changes['G_code'].previousValue) {
this.SG_code = "";
}
}
}
堆栈闪电战文件: