antd 表单获取不到默认值???

使用 antd 的 4.x 版本,给表单设置初始值,但是获取不到值

如果需要设置默认值并展示到页面上,需要设置两个地方:

  1. 设置 defaultValue,这个是用来展示在页面上的,例如:
<Form.Item label="Sex" name="sex" valuePropName="checked">
	//这里的defaultValue
  <Radio.Group defaultValue={
     1}>
    <Radio value={
     1}></Radio>
    <Radio value={
     0}></Radio>
  </Radio.Group>
</Form.Item>
  1. 设置 initialValues,这个是用来获取表单值的,例如:
<Form
   name="basic"
   onFinish={
     this.onFinish}
   onFinishFailed={
     this.onFinishFailed}
   initialValues={
     {
     
     sex: 1
   }}
 >
   <Form.Item label="Sex" name="sex" valuePropName="checked">
     <Radio.Group defaultValue={
     1}>
       <Radio value={
     1}></Radio>
       <Radio value={
     0}></Radio>
     </Radio.Group>
   </Form.Item>

   <Form.Item {
     ...tailLayout}>
     <Button type="primary" htmlType="submit">
       register
     </Button>
   </Form.Item>
 </Form>

你可能感兴趣的:(JavaScript,react,JavaScript,react,antd,js)