React-Antd4的Form表单校验

Posted web喵神的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React-Antd4的Form表单校验相关的知识,希望对你有一定的参考价值。

之前很少用react做项目,最近入职新公司,用的react,在自己的摸索过程中,慢慢会记录一些使用方法。今天简单记录一下使用antd 4.0版本的Form表单校验,直接代码。

 

需要购买阿里云产品和服务的,点击此链接领取优惠券红包,优惠购买哦,领取后一个月内有效:https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=fp9ccf07

1、代码:

import React, {Component} from \'react\'
import { Form, Input, Row, Col, Select, Button } from \'antd\'

class FormDemo extends Component {
  constructor(props){
    super(props)
  }

  formRef = React.createRef()

  componentDidMount(){
    const leftMenu = document.getElementById(\'left_menu\')
    leftMenu.style.minWidth = \'0px\'
    leftMenu.style.maxWidth = \'0px\'
  }

  submit =()=>{  // 点击提交时,做最后的校验
    const form = this.formRef.current
    form.validateFields().then((values)=>{  // 如果全部字段通过校验,会走then方法,里面可以打印出表单所有字段(一个object)
      console.log(\'成功\')
      console.log(values)
    }).catch((errInfo)=>{  // 如果有字段没听过校验,会走catch,里面可以打印所有校验失败的信息
      console.log(\'失败\')
    console.log(errInfo) }) } render(){ const layout
= { labelCol: { span: 8 }, wrapperCol: { span: 16 }, } return ( <div> <h3>表单校验-demo</h3> <div> <Form ref={this.formRef} {...layout} // onFinish={this.onFinish} style={{width: \'600px\',margin:\'0 auto\'}} > <Row gutter={24}> <Col span={24} key="select1"> <Form.Item label="下拉框1" name="select1" rules={[{ required: true, message: \'请输入用户名!\' }, ]} > <Select mode="multiple" showSearch placeholder="下拉框1" // onChange={this.handleChangeSchool} style={{ width: \'100%\' }} > <Option key=\'1\' value=\'11\'>aa</Option> <Option key=\'2\' value=\'22\'>bb</Option> <Option key=\'3\' value=\'33\'>cc</Option> </Select> </Form.Item> </Col> <Col span={24} key="text1"> <Form.Item label="密码" name="text1" rules={[ {required: true, message: \'请输入密码!\' }, {min: 6, message: \'密码至少6位!\' }, {max: 10,message: \'密码最长10位!\'}, ]} > <Input placeholder="text1" /> </Form.Item> </Col> <Col span={24} key="text2"> <Form.Item label="确认密码" name="text2" rules={[ {required: true, message: \'请输入text1!\' }, // {min: 6, message: \'确认密码至少6位!\' }, // {max: 10,message: \'确认密码最长10位!\'}, { validator: (_, value) =>{ const form = this.formRef.current let text1 = form.getFieldValue(\'text1\') if(value && (value.length < 6 || value.length > 10)) { return Promise.reject(\'text1必须是6~10位\') }else if(text1 != value){ return Promise.reject(\'两次密码不一致\') }else { return Promise.resolve() } } } ]} > <Input placeholder="text2" /> </Form.Item> </Col> <Col span={24} key="text3"> <Form.Item label="文本框3" name="text3"> <Input type="number" placeholder="text3" /> </Form.Item> </Col> </Row> <Row> <Col span={24} style={{ textAlign: \'right\' }}> <Button type="primary" onClick={this.submit} style={{ marginRight: \'8px\' }}>提交</Button> </Col> </Row> </Form> </div> </div> ) } } export default FormDemo

 

2、校验效果

 

 

 

以上是关于React-Antd4的Form表单校验的主要内容,如果未能解决你的问题,请参考以下文章

antd form表单validator 校验(4.17) 输入框一直是红色解决方法

应用二:Vue之ElementUI Form表单校验

js简单校验form表单

jQuery form插件的使用--使用 fieldValue 方法校验表单

el-form的各种校验姿态

12-js校验form表单和event对象学习