在Angular中,可以使用@ViewChildren
装饰器来获取多个子组件,并使用FormControl
的dirty
属性来检查表单是否被修改。
假设我们有一个父组件ParentComponent
,它包含多个子组件ChildComponent
,每个子组件都有一个表单控件formControl
。
首先,在ChildComponent
中,我们需要导入FormControl
和ControlValueAccessor
,并实现ControlValueAccessor
接口的方法。这将使我们能够与FormControl
进行交互。
import { Component, forwardRef, OnInit } from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
@Component({
selector: 'app-child',
templateUrl: './child.component.html',
styleUrls: ['./child.component.css'],
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => ChildComponent),
multi: true
}
]
})
export class ChildComponent implements ControlValueAccessor, OnInit {
formControl: FormControl;
onChange: any = () => {};
onTouched: any = () => {};
constructor() {
this.formControl = new FormControl();
}
ngOnInit() {
this.formControl.valueChanges.subscribe(() => {
this.onChange(this.formControl.value);
});
}
writeValue(value: any): void {
this.formControl.setValue(value);
}
registerOnChange(fn: any): void {
this.onChange = fn;
}
registerOnTouched(fn: any): void {
this.onTouched = fn;
}
setDisabledState(isDisabled: boolean): void {
isDisabled ? this.formControl.disable() : this.formControl.enable();
}
}
然后,在ParentComponent
中,我们可以使用@ViewChildren
装饰器来获取所有的ChildComponent
实例,并检查它们的formControl
是否为脏。
import { Component, ViewChildren, QueryList } from '@angular/core';
import { ChildComponent } from './child.component';
@Component({
selector: 'app-parent',
templateUrl: './parent.component.html',
styleUrls: ['./parent.component.css']
})
export class ParentComponent {
@ViewChildren(ChildComponent) childComponents: QueryList;
areChildFormsDirty() {
let dirty = false;
this.childComponents.forEach(child => {
if (child.formControl.dirty) {
dirty = true;
}
});
return dirty;
}
}
最后,在父组件的模板中,我们可以调用areChildFormsDirty
方法来检查多个子组件的表单是否为脏。
子组件表单已修改
这样,我们就可以检查多个子组件表单是否为脏了。