在Angular 9中,你可以使用FormArray的条件验证来订阅表单变化。下面是一个包含代码示例的解决方法:
首先,你需要在组件的构造函数中导入FormBuilder,并创建一个表单组:
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, FormArray, Validators } from '@angular/forms';
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponentComponent implements OnInit {
form: FormGroup;
constructor(private fb: FormBuilder) {}
ngOnInit() {
this.form = this.fb.group({
items: this.fb.array([], Validators.required)
});
// 订阅表单变化
this.form.valueChanges.subscribe(data => {
console.log(data);
});
}
get items() {
return this.form.get('items') as FormArray;
}
addItem() {
this.items.push(this.fb.control(''));
}
removeItem(index: number) {
this.items.removeAt(index);
}
onSubmit() {
console.log(this.form.value);
}
}
在模板中,你可以使用ngFor循环来显示表单数组的每个元素,并使用[index]属性来跟踪索引。你还可以使用ngIf指令来条件验证表单数组:
在上面的代码中,我们使用addItem()方法来向表单数组中添加新的控件,并使用removeItem()方法来删除控件。onSubmit()方法将打印表单的值。
通过订阅form.valueChanges,你可以在表单值发生变化时执行一些操作。在这个例子中,我们简单地将表单的值打印到控制台。
希望这个解决方法对你有所帮助!