我的表单组代码为
this.myForm = this._fb.group({
branch_name: ['', [Validators.required]],
branch_timing: this._fb.array([
this.initBranchTiming(),
])
});
initBranchTiming() {
return this._fb.group({
day: ['', []],
open_from: ['00:00:00', []],
open_till: ['00:00:00', []]
});
}
branch_name由此代码更新
(<FormControl>this.myForm.controls['branch_name']).updateValue(this.branch_detail.branch_name);
现在我必须更新表单数组的'day'字段。如何更新表格数组branch_timing的'day'字段?
答案 0 :(得分:10)
AFAIK将FormGroup
置于FormArray
内,剥离其名称的'FormControls',并使其成为一个列表,就像普通数组一样。
要单独更新FormControls
,请使用索引从AbstractControl
更新每个FormGroup
的值:
let index = 0; // or 1 or 2
(<FormArray>this.myForm.controls['branch_timing']).at(index).patchValue('example');
您也可以致电FormArray
或setValue
来更新整个patchValue
:
(<FormArray>this.myForm.controls['branch_timing']).setValue(['example', 'example1', 'example2']);
setValue
需要一个与整个结构或FormArray
匹配的数组,而patchValue
可以采用数组的超集或子集。 (FormArray-class on Angular2's website)
答案 1 :(得分:1)
您只需创建一个新的FormControl即可完成此操作:
this.form.setControl('items', new FormControl(arrayItemsValue));
或者在更新之前删除所有项目:
const items = (<FormArray>this.form.get('items'));
for (let i = 0; i < items.length; i++) {
items.removeAt(i);
}
this.form.get('items').setValue(arrayItemsValue);
答案 2 :(得分:0)
这是经过测试的,适用于Angular 2.0.0-rc.4,@ angular / forms 0.2.0:
(<FormControl>this.myForm.controls.branch_timing.controls[0].controls.day)
.updateValue('new value');
在发布版本中,使用@ angular / forms 2.0.0的Angular 2.0.0,语法已经简化:
this.myForm.value.branch_name = this.branch_detail.branch_name;
和
this.myForm.value.branch_timing[0].day = 'New Value';
答案 3 :(得分:-3)
试试吧,希望它适合你:
this.myForm.controls.splice(0);
&#13;