【发布时间】:2022-05-09 15:39:10
【问题描述】:
我有一个带有FormArray 的FormGroup 控件,其中填充了FormGroup 实例
someForm = this.fb.group({
days: this.fb.array([
this.fb.group({
description: ['']
})
])
})
另外,我有这个数组的吸气剂
get days(): FormArray {
return this.someForm.get('days') as FormArray;
}
当我尝试遍历FormArray 并将其分配给[formGroup] 指令时,如this article 中所示
<div *ngFor="let day of days.controls">
<ng-container [formGroup]="day">
...
我来了
error TS2740: Type 'AbstractControl' is missing the following properties from type 'FormGroup': controls, registerControl, addControl, removeControl, and 3 more.
【问题讨论】:
标签: angular angular-reactive-forms