Rau*_*bid 3 c# asp.net-mvc asp.net-mvc-4
我试图根据复选框值验证文本框.请查看我的模型类和IsValid覆盖方法.
public class Product
{
//Below property value(HaveExperiance)
[MustBeProductEntered(HaveExperiance)]
public string ProductName { get; set; }
public bool HaveExperiance { get; set; }
}
public class MustBeTrueAttribute : ValidationAttribute
{
//Here i need the value of HaveExperiance property which
//i passed from [MustBeProductEntered(HaveExperiance)] in product class above.
public override bool IsValid(object value)
{
return value is bool && (bool)value;
}
}
Run Code Online (Sandbox Code Playgroud)
您可以ProductName在product类中的属性中看到iam尝试传递HaveExperiance类属性值,如果已检查,则用户必须填写ProductName文本框.
所以我的原始问题是如何ProductName根据HaveExperiance价值验证文本框,提前感谢.
编辑:
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Data.Entity;
using System.Linq;
using System.Reflection;
using System.Web;
using System.Web.Mvc;
namespace Mvc.Affiliates.Models
{
public class MyProducts
{
[Key]
[Required(ErrorMessage = "Please insert product id.")]
public string ProductId { get; set; }
[RequiredIf("HaveExperiance")]
public string ProductName { get; set; }
public bool HaveExperiance { get; set; }
public List<MyProducts> prolist { get; set; }
}
public class RequiredIfAttribute : ValidationAttribute
{
private RequiredAttribute _innerAttribute = new RequiredAttribute();
public string Property { get; set; }
public object Value { get; set; }
public RequiredIfAttribute(string typeProperty)
{
Property = typeProperty;
}
public RequiredIfAttribute(string typeProperty, object value)
{
Property = typeProperty;
Value = value;
}
public override bool IsValid(object value)
{
return _innerAttribute.IsValid(value);
}
}
public class RequiredIfValidator : DataAnnotationsModelValidator<RequiredIfAttribute>
{
public RequiredIfValidator(ModelMetadata metadata, ControllerContext context, RequiredIfAttribute attribute) : base(metadata, context, attribute) { }
public override IEnumerable<ModelClientValidationRule> GetClientValidationRules()
{
return base.GetClientValidationRules();
}
public override IEnumerable<ModelValidationResult> Validate(object container)
{
PropertyInfo field = Metadata.ContainerType.GetProperty(Attribute.Property);
if (field != null)
{
var value = field.GetValue(container, null);
if ((value != null && Attribute.Value == null) || (value != null && value.Equals(Attribute.Value)))
{
if (!Attribute.IsValid(Metadata.Model))
{
yield return new ModelValidationResult { Message = ErrorMessage };
}
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
调节器
public class HomeController : Controller
{
//
// GET: /Home/
MvcDbContext _db = new MvcDbContext();
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(MyProducts model)
{
string ProductId = model.ProductId;
string ProductName = model.ProductName;
//bool remember = model.HaveExperiance;
return View();
}
}
Run Code Online (Sandbox Code Playgroud)
视图
@model Mvc.Affiliates.Models.MyProducts
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Details</h2>
<br />
<div style="height:200px; width:100%">
@using (Html.BeginForm("Index","Home", FormMethod.Post))
{
<h2>Details</h2>
@Html.LabelFor(model => model.ProductId)
@Html.TextBoxFor(model => model.ProductId)
@Html.LabelFor(model => model.ProductName)
@Html.EditorFor(model => model.ProductName)
@Html.ValidationMessageFor(model => model.ProductName, "*")
@Html.CheckBoxFor(model => model.HaveExperiance)
@Html.ValidationMessageFor(model => model.HaveExperiance, "*")
<input type="submit" value="Submit" />
}
</div>
Run Code Online (Sandbox Code Playgroud)
到目前为止,我已经尝试了上面的代码,实际上当我点击复选框时我需要它然后它应该开始验证我的ProductName文本框,如果取消选中则不然.我在上面的代码中遗漏了一件小事,请帮助并纠正我.
这是如何基于另一个属性创建自定义验证属性的完整示例:
public class RequiredIfAttribute : ValidationAttribute
{
private RequiredAttribute _innerAttribute = new RequiredAttribute();
public string Property { get; set; }
public object Value { get; set; }
public RequiredIfAttribute(string typeProperty) {
Property = typeProperty;
}
public RequiredIfAttribute(string typeProperty, object value)
{
Property = typeProperty;
Value = value;
}
public override bool IsValid(object value)
{
return _innerAttribute.IsValid(value);
}
}
public class RequiredIfValidator : DataAnnotationsModelValidator<RequiredIfAttribute>
{
public RequiredIfValidator(ModelMetadata metadata, ControllerContext context, RequiredIfAttribute attribute) : base(metadata, context, attribute) { }
public override IEnumerable<ModelClientValidationRule> GetClientValidationRules()
{
return base.GetClientValidationRules();
}
public override IEnumerable<ModelValidationResult> Validate(object container)
{
PropertyInfo field = Metadata.ContainerType.GetProperty(Attribute.Property);
if (field != null) {
var value = field.GetValue(container, null);
if ((value != null && Attribute.Value == null) || (value != null && value.Equals(Attribute.Value))) {
if (!Attribute.IsValid(Metadata.Model)) {
yield return new ModelValidationResult { Message = ErrorMessage };
}
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
在Global.asax文件中Application_Start添加此部分:
DataAnnotationsModelValidatorProvider.RegisterAdapter(typeof(RequiredIfAttribute), typeof(RequiredIfValidator));
Run Code Online (Sandbox Code Playgroud)
这部分需要注册,RequiredIfValidator否则MVC将只使用RequiredIfAttribute忽略RequiredIfValidator.
如果要验证ProductName是否HaveExperiance具有值:
[RequiredIf("HaveExperiance")]
public string ProductName { get; set; }
Run Code Online (Sandbox Code Playgroud)
如果您只想验证ProductName是否HaveExperiance为false:
[RequiredIf("HaveExperiance", false)]
public string ProductName { get; set; }
Run Code Online (Sandbox Code Playgroud)
如果您只想验证ProductName是否HaveExperiance为真:
[RequiredIf("HaveExperiance", true)]
public string ProductName { get; set; }
Run Code Online (Sandbox Code Playgroud)
在RequiredIfAttribute类I中,我创建了一个RequiredAttribute对象,仅用于验证传递给IsValid方法的值.
Propertyfield用于保存激活验证的属性名称.它在类中RequiredIfValidator用于使用reflection(field.GetValue(container, null))获取字段当前值.
当您在代码中调用验证时(例如,当您这样做时if(TryValidateModel(model)))首先调用RequiredIfValidator类,然后调用RequiredIfAttribute(通过Attribute.IsValid(Metadata.Model))类,如果某些条件有效((value != null && Attribute.Value == null) || (value != null && value.Equals(Attribute.Value))).
最后一件事.因为RequiredIfAttribute继承自ValidationAttribute您也可以使用与任何其他验证属性相同的错误消息.
[RequiredIf("HaveExperiance", true, ErrorMessage = "The error message")]
public string ProductName { get; set; }
[RequiredIf("HaveExperiance", true, ErrorMessageResourceName = "ResourceName", ErrorMessageResourceType = typeof(YourResourceType))]
public string ProductName { get; set; }
Run Code Online (Sandbox Code Playgroud)