需要使用 antd 表单重置特定字段的值

发布于 2025-01-11 14:59:43 字数 167 浏览 0 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔嚣张 2025-01-18 14:59:43

antd 形式的 ResetFields 仅接受字段数组作为参数。
尝试下面的代码:

form.resetFields([`CorName_${index}`]);

antd form resetFields only takes array of fields as parameter.
Try below code:

form.resetFields([`CorName_${index}`]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文