简体   繁体   中英

How to add object to react-final-form field name dynamically?

This react-final-form component will return the following result

<Field
   name="answers[0].name"
   component="input"
   type="radio"
   value="0"
/>


{ answers: [ { name: 'value' } ] } 

How to add another property? that will end like This

{ answers: [ { name: 'user input value will here', other: 'my custom data' } ] } 

According to final-form you can name your field component in 4 ways在此处输入图像描述

You can add an initialValues prop to the form which will pre-populate the result.

<Form
    onSubmit={onSubmit}
    initialValues={{
        answers: [ { other: 'your custom data' } ]
    }}
>
    <Field
        name="answers[0].name"
        component="input"
        type="text"
    />
</Form>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM