Why Angular ReactiveForms FormArray throws error "TypeError: Cannot read property 'updateOn' of null"

Why Angular ReactiveForms FormArray throws error "TypeError: Cannot read property 'updateOn' of null"

大家好,我有一个 Formarray,其中包含一组角色。在编辑过程中,它会动态删除并添加该表单数组中的角色,直到这里一切正常,但是当我提交表单时,它会出错并且页面会刷新。

错误:TypeError:无法读取 null

的 属性 'updateOn'

另外我附上下面的屏幕截图

对我有用

确保你输入的是 <button type="button" ></button> 而不是 <input type="submit" />

<button [ngClass]="(this.editMemberForm.invalid?'a1':'')" type="button" class="btn btn-success" (click)="saveData()">Save</button>

仔细看看你在 formGroup 上做什么

对我来说做一些 formGroup.removeControl("某地");

引发了同样的错误。