需要使用 antd 表单重置特定字段的值
我想使用 antd 表单在另一个字段值的 onchange 上重置字段值。它是基于索引的。
this.form.resetFields({[`CorName_${index}`]:''})
我尝试了这个,但是出现错误。还有其他方法可以清除特定索引的字段吗?
I want to reset a field value on the onchange of another field value using antd form. It is based on index.
this.form.resetFields({[`CorName_${index}`]:''})
I tried this, But error occurs. Is there any other way to clear particular index's field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
antd 形式的 ResetFields 仅接受字段数组作为参数。
尝试下面的代码:
antd form resetFields only takes array of fields as parameter.
Try below code: