zoukankan      html  css  js  c++  java
  • antd 表单的两种校验方式

    1.声明式表单验证:

                            <Form.Item
                                name="username"
                                rules={[
                                    {
                                        required: true,
                                        message: 'Please input your Username!',
                                    },
                                    {
                                        max: 20,
                                        message: '最长20位!',
                                    },
                                    {
                                        min: 5,
                                        message: '至少5位!!',
                                    },                                {
                                        pattern: /^[A-Za-zd_]+$/,
                                        message: '自能包含字母数字下划线字符!',
                                    },
                                ]}
                            >
                                <Input prefix={<UserOutlined className="site-form-item-icon" />} placeholder="Username" />
                            </Form.Item>
    

      

    2. validator自定义式验证:

                            <Form.Item
                                name="password"
                                rules={[
                                    {
                                        validator: (_, value) =>{
                                        if(value.length >= 6 && value.length<=10) {
                                            return Promise.resolve()
                                        }else{
                                            return Promise.reject('密码长度必须是6~10位')
                                        }
                                      }
                                    }
                                ]}
                            >
                                <Input
                                    prefix={<LockOutlined className="site-form-item-icon" />}
                                    type="password"
                                    placeholder="Password"
                                />
                            </Form.Item>
    

      

  • 相关阅读:
    latex表格实现文本自动换行
    SQL like查询条件中的通配符处理
    火狐浏览器下载文件中文乱码,文件名中的空格变加号("+")的问题
    jquery.zclip.js复制到剪切板
    EF架构~过滤导航属性等,拼接SQL字符串
    日志记录类LogHelper
    VS插件开发
    C#预处理器指令
    c++Builder 下的文件及目录操作
    C#:在catch中return,会执行finally吗?
  • 原文地址:https://www.cnblogs.com/jlyuan/p/12774414.html
Copyright © 2011-2022 走看看