Custom Email Attribute在客户端不起作用原因

Posted 杰的记事本——javascript.shop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Custom Email Attribute在客户端不起作用原因相关的知识,希望对你有一定的参考价值。

原文发布时间为:2011-07-16 —— 来源于本人的百度文章 [由搬家工具导入]

Custom Email Attribute在客户端不起作用原因,就是未实现 IClientValidatable 接口。必须实现这个接口,才可以。如下:

 

 public class EmailAttribute : RegularExpressionAttribute, IClientValidatable

    {
        public EmailAttribute()
            : base(@"^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})$")
        {

        }
        public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
        {
            var rule = new ModelClientValidationRegexRule(this.ErrorMessageString, base.Pattern);
            return new[] { rule };
        }
    }

http://haacked.com/archive/2009/11/19/aspnetmvc2-custom-validation.aspx

以上是关于Custom Email Attribute在客户端不起作用原因的主要内容,如果未能解决你的问题,请参考以下文章

Magento在admin中将自定义输入字段添加到客户帐户窗体

Woocommerce在wc属性标签功能中获取属性自定义字段

WooCommerce 在变体标签后显示内容

Elasticsearch之IKAnalyzer的过滤停止词

detectron2报AttributeError: Attribute ‘evaluator_type‘ does not exist in the metadata of dataset(代码片段

Firebase Auth Custom 声明未传播到客户端