为什么Angular ReactiveForms FormArray会引发错误“ TypeError:无法读取null的属性'updateOn'”

时间:2019-07-11 04:19:54

标签: angular6 angular-reactive-forms form-control formarray

大家好,我有一个Formarray,它具有一组Roles。在Edit期间,它会动态删除并添加该表单数组中的角色,直到一切正常为止,但是当我提交表单时,它会解决错误并刷新页面。

错误:TypeError:无法读取null的属性“ updateOn”

我还要附上下面的屏幕截图enter image description here

1 个答案:

答案 0 :(得分:3)

为我工作

确保您放置了struct ContentView: View { @State var animate = false var body: some View { VStack { Button(action: { withAnimation { self.animate.toggle() } }, label: { Text("Animate") }) Rectangle() .foregroundColor(.blue) .frame(width: self.animate ? 100 : 150, height: self.animate ? 60 : 90) } } } 而不是<button type="button" ></button>

<input type="submit" />