Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有自定义 mutators 来处理 react-final-form 中的 Slider 值更改,例如这个示例。但是,我想要一个在向导中生成 Field/FieldArray 的函数,例如这个例子。在 FieldArray 渲染函数中,我可以从 fields 变量访问 arrayMutators 和另一个自定义 mutator。我在 Field 的输入变量中找不到这些变异器。
有没有办法从父级访问向导中的输入或访问 form.mutator 中的自定义增变器?
该 Slider 示例是对突变器的滥用。这<SliderField/>可以只用一个<Field/>组件来完成。
<SliderField/>
<Field/>
突变体生活在form. 如果你真的需要抓住它们,你可以使用useForm()钩子。
form
useForm()
I have a List<Dictionary<string,string>> object (the Keys in the Dict in each list object are the same), and I want to convert it to a
List<Dictionary<string,string>>