需要使用 antd 表单重置特定字段的值
need to reset a particular field's value using antd form
我想在使用 antd 表单更改另一个字段值时重置一个字段值。它基于索引。
this.form.resetFields({[`CorName_${index}`]:''})
我试过了,但是出现错误。有没有其他方法可以清除特定索引的字段?
antd form resetFields 只接受字段数组作为参数。
试试下面的代码:
form.resetFields([`CorName_${index}`]);
我想在使用 antd 表单更改另一个字段值时重置一个字段值。它基于索引。
this.form.resetFields({[`CorName_${index}`]:''})
我试过了,但是出现错误。有没有其他方法可以清除特定索引的字段?
antd form resetFields 只接受字段数组作为参数。 试试下面的代码:
form.resetFields([`CorName_${index}`]);