Does redux-form field value can hold object instead of just a string?

后端 未结 5 1163
暖寄归人
暖寄归人 2020-12-31 18:10

Does redux-form field value can hold object instead of just a string?

Consider following example

    class SelectQuestions extends Component{
                


        
5条回答
  •  無奈伤痛
    2020-12-31 18:12

    It is simple, you can just add ".value" (or anything else..) to name prop and it will create object and update value inside it on changes...

    
    

    And you will get object :

    companyName: {
    value:""
    }
    

提交回复
热议问题