我需要的是一件简单的事情。如果我选择国家,它应该设置电话前缀字段值。我有 2 个字段的 redux-form,我将 react-select 作为组件传递。
const BasicForm = props => {
const { error, handleSubmit, pristine, reset, submitting, countries, phonePrefixes } = props;
return (
<div className="form step1">
<form onSubmit={handleSubmit}>
<Field
name="country"
className="form-control"
component={selectInput}
options={countries}
placeholder="Country"
/>
<Field
name="phonePrefix"
className="form-control"
component={selectInput}
options={phonePrefixes}
placeholder="Prefix"
/>
<button type="submit" disabled={submitting}>REGISTER
<i className="fa fa-chevron-right"> </i>
</button>
</form>
</div>
)};