在Angular 5中,使用FormArray的patchValue方法时可能会遇到一些问题。以下是一个解决方法的示例代码:
import { Component, OnInit } from '@angular/core';
import { FormGroup, FormArray, FormControl } 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;
ngOnInit() {
this.form = new FormGroup({
items: new FormArray([])
});
// 添加初始控件
this.addItem();
}
addItem() {
const control = new FormControl('');
(this.form.get('items') as FormArray).push(control);
}
removeItem(index: number) {
(this.form.get('items') as FormArray).removeAt(index);
}
patchValues() {
const values = ['Value 1', 'Value 2', 'Value 3'];
// 清空控件
while ((this.form.get('items') as FormArray).length) {
(this.form.get('items') as FormArray).removeAt(0);
}
// 添加新的控件
values.forEach(value => {
const control = new FormControl(value);
(this.form.get('items') as FormArray).push(control);
});
}
}
在上述代码中,我们创建了一个包含FormArray的FormGroup。在初始化时,我们添加了一个初始控件。addItem方法用于添加新的控件,removeItem方法用于删除控件。patchValues方法首先清空所有控件,然后使用新的值重新填充控件。
在模板中,你可以使用*ngFor循环来显示所有的控件,并且使用patchValues方法来重新填充控件。示例代码如下:
通过以上代码,你应该可以成功使用FormArray的patchValue方法来重新填充表单。