我正在尝试实现自定义属性验证,类似于ScottGu博客中的演示: http://weblogs.asp.net/scottgu/archive/2010/01/15/asp-net-mvc-2-model-validation.aspx
我有电子邮件的自定义验证器属性:
public class EmailAttribute : RegularExpressionAttribute
{
public EmailAttribute() :
base("^[A-Za-z0-9](([_\\.\\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\\.\\-]?[a-zA-Z0-9]+)*)\\.([A-Za-z]{2,})$") { }
}
我的班级使用它:
[Required(ErrorMessage = ValidationCiM.MsgObaveznoPolje)]
[Email(ErrorMessage = ValidationCiM.MsgMailNeispravan)]
[StringLength(ValidationCiM.LenSrednjePolje, ErrorMessage = ValidationCiM.MsgSrednjePolje)]
public string Mail { get; set; }
它在服务器端运行良好,模型验证正常,以及一切。但客户端验证不会为此激活第二个属性,它适用于Required,它也适用于StringLength但不适用于电子邮件。 我试过包括jquery和Microsoft ajax脚本,但似乎没有区别。
在ScottGu的博客中,他表示如果像这样实现的自定义验证应该无需添加自定义脚本即可。
有什么想法吗?
答案 0 :(得分:6)
在ASP.NET MVC 3中使用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 System.Collections.Generic.IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
{
var rule = new ModelClientValidationRegexRule(this.ErrorMessageString, base.Pattern);
return new[] { rule };
}
}
答案 1 :(得分:3)
您实际需要做的是(在申请开始时):
DataAnnotationsModelValidatorProvider.RegisterAdapter(typeof(EmailAttribute), typeof(RegularExpressionAttributeAdapter));
它将客户端验证与您的自定义属性挂钩。