最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Ant Design Form Custom Validator - Stack Overflow

programmeradmin1浏览0评论

In ant design one can provide a custom validator like the following:

<Form.Item label="First Name">
  {getFieldDecorator("firstName", {
    rules: [
      {
        validator: (rule: any, value: string, cb: (msg?: string) => void) => {
          value.length < 3 ? cb("too short") : cb();
        }
      }
    ]
  })(<Input />)}
</Form.Item>

As you see I'm using typescript and cause its transpiler is really cool it wants me to use rule parameter of validator as well. I can't find any documentation on it and don't know what is good for. So if you can please explain briefly what is it and how it should be used?

In ant design one can provide a custom validator like the following:

<Form.Item label="First Name">
  {getFieldDecorator("firstName", {
    rules: [
      {
        validator: (rule: any, value: string, cb: (msg?: string) => void) => {
          value.length < 3 ? cb("too short") : cb();
        }
      }
    ]
  })(<Input />)}
</Form.Item>

As you see I'm using typescript and cause its transpiler is really cool it wants me to use rule parameter of validator as well. I can't find any documentation on it and don't know what is good for. So if you can please explain briefly what is it and how it should be used?

Share edited Aug 19, 2019 at 19:18 Dennis Vash 54k12 gold badges117 silver badges132 bronze badges asked Aug 19, 2019 at 19:00 pouyapouya 3,7766 gold badges45 silver badges63 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 7

As part of Validation Rules validator accepts rules as first argument.

Due to the fact it's a wrapper for async-validator, you can check the Rules specification:

function(rule, value, callback, source, options)

rule: The validation rule in the source descriptor that corresponds to the field name being validated. It is always assigned a field property with the name of the field being validated.

You also can put a breakpoint and see its value for your needs.

发布评论

评论列表(0)

  1. 暂无评论