1
我使用的是組件的加載形式,我從api響應中獲得我的文本字段的值,當我填充並提交這些值時,因爲我沒有觸及域 - 我我看到驗證錯誤 - 就像它們是空的 - 如何將這些現有值傳遞給道具?Redux窗體預先填充的數據
const emailValfromapi = this.props.data && this.props.data.email ? this.props.data.email : [];
const { handleSubmit, fields: { email, abc, def, etc } } = this.props;
<fieldset className="form-group">
<div className="input-wrapper">
<input value={emailValfromapi} id="email" {...email} type="email" className={email.touched && email.error ? 'error-red' : ''} required />
<label className="input-label" htmlFor="Email">To</label>
{ email.touched && email.error && <div className="alert-danger"> { email.error } </div> }
</div>
</fieldset>