FormItem ANTD中defaultValue或value无效的问题
P粉265724930
2023-08-22 23:51:25
<p>我尝试使用以下代码,但字段没有绑定。 onChange属性运行良好</p>
<pre class="brush:php;toolbar:false;">const { getFieldDecorator, getFieldError, isFieldTouched } = this.props.form;
const NameError = isFieldTouched("Name") && getFieldError("Name");
<FormItem validateStatus={NameError ? "error" : ""} help={NameError || ""}>
{getFieldDecorator("Name", {
//initialValue: this.state.Data.Name,
rules: [{ required: true, message: "Please input the component name!" }]
})(
<Input
className="form-control"
type="text"
name="Name"
defaultValue={this.state.Data.Name}
onChange={this.onChange}
/>
)}
</FormItem></pre>
<p>我有什么遗漏吗?我什至使用了<code>input</code>而不是<code>Input</code></p>
<p><strong>编辑</strong> 在<code>componentDidMount</code>方法中,我从API获取数据:</p>
<pre class="brush:php;toolbar:false;">fetch('http://localhost:5728/Fields/get/' + this.state.Data.Id)
.then(results=>{
return results.json()
})
.then(data=>{
this.setState({
Data: {
Id: data.field.Id,
Name: data.field.Name,
Description: data.field.Description,
Value: data.field.Value
}
})
})</pre>
<p>我尝试使用<code>initialValue</code>,但只有在<code>constructor</code>方法中设置状态值时才有效。调用API时,更改不会反映出来。 </p>
你也可以使用钩子
文档中指出:
当数据从后端加载时,只需调用
setFieldsValue
:或者更简洁地,如果后端的
data.field
完全匹配字段名: