在Angular 8中,当使用表单数组时,如果出现错误"ERROR Error: Cannot find control with name 'getAccountArr'",可以按照以下步骤解决:
formArrayName
指令来表示表单数组,例如:
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponentComponent implements OnInit {
myForm: FormGroup;
constructor(private fb: FormBuilder) { }
ngOnInit() {
this.myForm = this.fb.group({
getAccountArr: this.fb.array([])
});
// 添加初始控件到表单数组
this.addControl();
}
get getAccountArr() {
return this.myForm.get('getAccountArr') as FormArray;
}
addControl() {
// 添加新的控件到表单数组
this.getAccountArr.push(this.fb.control(''));
}
}
通过以上步骤,应该能够解决错误"ERROR Error: Cannot find control with name 'getAccountArr'"。