微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net-mvc – 每个验证属性的所有不显眼的验证属性的列表

我需要每个验证属性的所有不显眼的验证属性的参考列表.就像是:

enter image description here

解决方法

MVC为它提供的每个数据注释验证器提供了不显眼的验证器.从 Validation with Data Annotation Validators开始,这是列表:

Using the Data Annotation Validator Attributes

When you use the Data Annotations Model Binder,you use validator attributes to perform validation. The System.ComponentModel.DataAnnotations namespace includes the following validator attributes:

  • Range – Enables you to validate whether the value of a property falls
    between a specified range of values.
  • ReqularExpression – Enables you to validate whether the value of a
    property matches a specified regular expression pattern.
  • required – Enables you to mark a property as required.
  • StringLength –
    Enables you to specify a maximum length for a string property.
  • Validation – The base class for all validator attributes.
  • DataTypeAdditional validations for specific data types,like phone numbers,credit cards and email addresses. Not in the referenced link.

有关可以包含在您的应用程序中的其他验证器,另请参见https://dataannotationsextensions.apphb.com.

就客户端标记属性而言,这些属性由上述注释生成的不显眼的适配器处理.它们以“data-val-”为前缀.验证器的其他参数将作为附加属性添加.例如:
正则表达式变为data-val-regex =“Message”data-val-regex-pattern =“some pattern”

来自MVC3 jQuery.validate.unobtrusive.js:

adapters.addSingleVal("accept","exts")
        .addSingleVal("regex","pattern");

adapters.addBool("creditcard")
        .addBool("date")
        .addBool("digits")
        .addBool("email")
        .addBool("number")
        .addBool("url");

adapters.addMinMax("length","minlength","maxlength","rangelength")
        .addMinMax("range","min","max","range");

adapters.add("equalto",["other"],function (options) {
        // removed for brevity
});
adapters.add("required",function (options) {
    // removed for brevity
});
adapters.add("remote",["url","type","additionalfields"],function (options) {
    // removed for brevity
});

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐