以下是我的代码面临的问题-
commodity 2
在加载时可用,但花费commodity 1
已重新整理 initialValue={values.commodity.value}
应该在商品中选择。工作示例-https://codesandbox.io/s/ql95jvpxq4(正确的行为)
我试图用Select
复制相同的内容,但是不知何故它不起作用。让我知道我在这里做错了。
错误代码-https://codesandbox.io/s/01qno3vmvl
代码-
const formikEnhancer = withFormik({
mapPropsToValues: props => ({
commodity: { value: "commodity2", label: "commodity2" },
plant: { value: "Plant3", label: "Plant3" }
}),
handleSubmit: (values, { setSubmitting }) => {
const payload = {
...values,
commodity: values.commodity.value,
plant: values.plant.value
};
setTimeout(() => {
alert(JSON.stringify(payload, null, 2));
setSubmitting(false);
}, 1000);
},
displayName: "MyForm"
});
表格-
<form onSubmit={handleSubmit}>
<div style={{ margin: "1rem 0" }}>
<label htmlFor="commodity" style={{ display: "block" }}>
Commodity
</label>
<Select
id="commodity"
name="commodity"
value={commodities}
initialValue={values.commodity}
onChange={(field, value) => {
console.log(value);
setFieldValue("plant", plants[value][0]);
}}
/>
</div>
<div style={{ margin: "1rem 0" }}>
<label htmlFor="plant" style={{ display: "block" }}>
Plant
</label>
<Select
id="plant"
name="plant"
value={plants[values.commodity.value]}
onChange={setFieldValue}
/>
</div>
<button
type="button"
className="outline"
onClick={handleReset}
disabled={!dirty || isSubmitting}
>
Reset
</button>
<button type="submit" disabled={isSubmitting}>
Submit
</button>
<DisplayFormikState {...this.props} />
</form>
仅供参考-我是formik
的新手,所以我可能缺少这里很常见的东西。
答案 0 :(得分:1)
initialValue设置错误。它应该是字符串值而不是对象。 选择值正在使用父组件的状态和道具进行更改。