我创建了以下自定义RegularExpressionAttribute
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
public class AlphaNumericAttribute: RegularExpressionAttribute, IClientValidatable
{
public AlphaNumericAttribute()
: base("^[-A-Za-z0-9]+$")
{
}
public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
{
yield return new ModelClientValidationRule { ErrorMessage = FormatErrorMessage(metadata.GetDisplayName()), ValidationType = "alphanumeric" };
}
}
ViewModel中的字段使用我的AlphaNumeric属性进行修饰:
[AlphaNumeric(ErrorMessageResourceType = typeof(Resources), ErrorMessageResourceName = Resources.DriverLicenseNumber_RegexError_)]
public string DriverLicenseNumber { get; set; }
该字段构建在视图中:
@using (Html.BeginForm("Index", "Application", FormMethod.Post, new { id = "applicationDataForm", autocomplete = "off" }))
{
@Html.LabelFor(m => m.DriverLicenseNumber)
@Html.ValidationMessageFor(m => m.DriverLicenseNumber)
@Html.TextBoxFor(m => m.DriverLicenseNumber)
}
这应该在我的html输入标记上产生正确的“data - ”验证属性。但是,渲染的标记如下所示:
<input data-val="true" data-val-alphanumeric="Please enter a valid driver's license number." id="DriverLicenseNumber" name="DriverLicenseNumber" type="text" value="" maxlength="20" class="valid">
显然不存在应该呈现的 data-val-regex 和 data-val-regex-pattern 属性。
我已经构建了具有完全相同结构的其他验证器,并且它们正常工作,就像这个SSN验证一样,它使用jquery掩码处理屏蔽输入的屏蔽空间:
public class SsnAttribute : RegularExpressionAttribute, IClientValidatable
{
public SsnAttribute()
: base("^([0-9]{3}–[0-9]{2}–[0-9]{4})|([ ]{3}–[ ]{2}–[ ]{4})|([0-9]{9,9})$")
{
}
public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
{
yield return new ModelClientValidationRule { ErrorMessage = FormatErrorMessage(metadata.GetDisplayName()), ValidationType = "ssn" };
}
}
使用ViewModel上附带的应用程序:
[Ssn(ErrorMessageResourceType = typeof(Resources), ErrorMessageResourceName = Resources.SocialSecurity_RegexError_)]
public new string SocialSecurityNumber { get; set; }
该字段构建在视图中:
@using (Html.BeginForm("Index", "Application", FormMethod.Post, new { id = "applicationDataForm", autocomplete = "off" }))
{
@Html.LabelFor(m => m.SocialSecurityNumber)
@Html.ValidationMessageFor(m => m.SocialSecurityNumber)
@Html.TextBoxFor(m => m.SocialSecurityNumber)
}
此验证属性正确呈现data-val-regex和data-val-regex-pattern属性:
<input class="SSNMask valid" data-val="true" data-val-regex="Please enter a valid social security number." data-val-regex-pattern="^([0-9]{3}–[0-9]{2}–[0-9]{4})|([ ]{3}–[ ]{2}–[ ]{4})|([0-9]{9,9})$" id="SocialSecurityNumber" name="SocialSecurityNumber" type="text" value="" maxlength="22">
我无法弄清楚AlphaNumeric属性中缺少什么,它不会呈现相应的html属性。
答案 0 :(得分:9)
我认为AlphaNumericAttribute
的问题是您没有为alphanumeric
类型的验证程序添加JavaScript适配器。
你的代码肯定会有这样的东西:
$.validator.unobtrusive.adapters.add('ssn', function(options) { /*...*/ });
上面的代码声明了SsnAttribute
的客户端适配器。请注意,它的名称ssn
与ValidationType
的{{1}}属性中的设置相同。
要修复ModelClientValidationRule
的问题,您应该返回AlphaNumericAttribute
,因为它已经为您的案例设置了所有必要的设置(即已经存在的适配器ModelClientValidationRegexRule
)。
regex
但是如果在正则表达式验证后面的客户端应该有额外的逻辑,你应该编写并注册你自己的不显眼的适配器。
要获得更大的图像,并且为了更好地了解如何在ASP.NET MVC中实现自定义验证,您可以访问Brad Wilson Unobtrusive Client Validation in ASP.NET MVC 3的博客文章,请参阅[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
public class AlphaNumericAttribute : RegularExpressionAttribute, IClientValidatable
{
public AlphaNumericAttribute()
: base("^[-A-Za-z0-9]+$")
{
}
public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
{
yield return new ModelClientValidationRegexRule(FormatErrorMessage(metadata.GetDisplayName()), Pattern);
}
}
部分。
答案 1 :(得分:1)
以下是How to create custom validation attribute for MVC的另一种方法,该方法改编自ASP.NET MVC Custom Validation上的这篇文章:
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
public class AlphaNumericAttribute: RegularExpressionAttribute
{
private const string pattern = "^[-A-Za-z0-9]+$";
public AlphaNumericAttribute() : base(pattern)
{
// necessary to enable client side validation
DataAnnotationsModelValidatorProvider.RegisterAdapter(
typeof(AlphaNumericAttribute),
typeof(RegularExpressionAttributeAdapter));
}
}
通过使用RegisterAdapter
,您可以利用已存在的正则表达式的集成为您自己的继承类型。