对于我包含的代码量,我深表歉意。我试图将其保持在最低限度。
我正在尝试在我的模型上使用自定义验证器属性以及自定义模型活页夹。Attribute 和 Binder 分别工作得很好,但如果我两者都有,那么 Validation Attribute 就不再起作用了。
这是我为便于阅读而截取的代码。如果我在 global.asax 中遗漏了代码,则会触发自定义验证,但如果我启用了自定义活页夹,则不会触发。
验证属性;
public class IsPhoneNumberAttribute : ValidationAttribute
{
public override bool IsValid(object value)
{
//do some checking on 'value' here
return true;
}
}
我的模型中属性的使用;
[Required(ErrorMessage = "Please provide a contact number")]
[IsPhoneNumberAttribute(ErrorMessage = "Not a valid phone number")]
public string Phone { get; set; }
自定义模型绑定器;
public class CustomContactUsBinder : DefaultModelBinder
{
protected override void OnModelUpdated(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
ContactFormViewModel contactFormViewModel = bindingContext.Model as ContactFormViewModel;
if (!String.IsNullOrEmpty(contactFormViewModel.Phone))
if (contactFormViewModel.Phone.Length > 10)
bindingContext.ModelState.AddModelError("Phone", "Phone is too long.");
}
}
全球阿萨克斯;
System.Web.Mvc.ModelBinders.Binders[typeof(ContactFormViewModel)] =
new CustomContactUsBinder();