根据文档,我知道如何使用getFieldDecorator和setFieldsValue。但是对于我的情况,我想在getFieldDecorator内部的元素结构中进行一些更改,如下所示。在这种情况下,setFieldsValue不起作用,任何可行的可能性。为什么我需要使用这种方式来覆盖浮动标签等显示样式。
<FormItem label={""}>
{getFieldDecorator('Price', {
initialValue:'',
rules: [{ required: true, message: 'amount required!', whitespace: true }]
})(
<div className="form-group">
<Input
type={"number"}
placeholder="Enter amount"
id="amount"
/>
<label className="custom-label" htmlFor="amount">Amount</label>
</div>
)}
</FormItem>