Antd4之form表单数据回显


antd4摒弃了antd3的 getFieldDecorator,initialValue

一、函数中设置数据回显,使用useForm

操作如下:https://blog.csdn.net/Welkin_qing/article/details/110004969

(1)使用useForm

使用form可以使用antd的setFieldsValue

const [form] = Form.useForm()
const requestProfileList = useCallback(async () => {
    try {
      const { result } = await fetchProfileListRequest()
      form.setFieldsValue(result)
    } catch (e) {
      message.error(e)
    }
  }, [])


(2)在form表单中定义form

//表单提交
const handleOnFinish = useCallback(
     (value) => {
     //拿到数据
      console.log(value)
    },
    []
  )

<Form layout="horizontal" onFinish={handleOnFinish} form={form}>
</Form>

二、不使用useForm

<Form
 className={styles['form-container']}
  onFinish={handleSubmit}
  initialValues={{ log_id: 'lca.log' }} //设置数据回显
>
  <div className={styles['form-container__keyIn']}>
  //设置规则
    <Form.Item name="log_id" rules={[{ required: true, message: '请选择日志' }]}>
      <Select
        placeholder="选择日志"
        disabled={disable || switch_info.logSwitch}
        defaultActiveFirstOption
      >
        {LOG_INFO.map(
          (item, index): JSX.Element => {
            return (
              <Option value={item.value} key={index}>
                {item.label}
              </Option>
            );
          },
        )}
      </Select>
    </Form.Item>
  </div>
 </form>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值