大家好,我有一个Formarray,它具有一组Roles。在Edit期间,它会动态删除并添加该表单数组中的角色,直到一切正常为止,但是当我提交表单时,它会解决错误并刷新页面。
错误:TypeError:无法读取null的属性“ updateOn”
答案 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" />