aromameng / react-app

0 stars 0 forks source link

Switch 组件使用setFieldsValue失效的问题 #3

Open aromameng opened 5 years ago

aromameng commented 5 years ago

原因在于Switch的控制属性不是 value,解决方案是设置 valuePropName 属性值为 checked

{...getFieldProps('switch', {
    initialValue: true,
    valuePropName: 'checked',
})}