在Angular中,如果要处理数组属性的formControl,可以使用FormArray来实现。
首先,在组件中定义一个formGroup和一个formArray,然后在formArray中添加多个formControl。可以使用FormBuilder来简化创建表单的过程。
下面是一个示例代码:
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, FormArray, FormControl } from '@angular/forms';
@Component({
selector: 'app-array-form',
templateUrl: './array-form.component.html',
styleUrls: ['./array-form.component.css']
})
export class ArrayFormComponent implements OnInit {
myForm: FormGroup;
constructor(private fb: FormBuilder) { }
ngOnInit() {
this.myForm = this.fb.group({
// 使用formArray来处理数组属性
items: this.fb.array([])
});
// 添加初始的formControl到formArray中
this.addFormControl();
}
// 获取formArray,方便在模板中使用
get items() {
return this.myForm.get('items') as FormArray;
}
// 添加一个空的formControl到formArray中
addFormControl() {
const control = new FormControl('');
this.items.push(control);
}
// 删除最后一个formControl
removeFormControl(index: number) {
this.items.removeAt(index);
}
}
然后,在模板文件中,可以使用ngFor来循环显示formArray中的formControl,并使用formControlName来绑定每个formControl。
这样就可以动态地添加和删除formControl了。当用户填写表单时,可以在组件中通过this.myForm.value
来获取表单数据,其中items
属性对应的就是一个数组。