ASP.NETMVC。如何禁用基于参数的必需验证?
ASP.NET MVC. How disable required validation based on a parameter?
我确实有一个实体 class,它具有一些必需的属性,具体取决于选择器。
例如:选择器可以假定为“1”或“2”。如果选择器为“1”,则需要一组参数。如果选择器为“2”,则需要另一组参数。
class MyClass{
public int Selector {get;set;} // 1 or 2
public string A_required_for_1 {get;set;}
public string B_required_for_1 {get;set;}
public string C_required_for_2 {get;set;}
public string D_required_for_2 {get;set;}
public string E_Required_for_both_selectors {get;set;}
}
用户应该能够在视图中创建或编辑操作期间在选择器之间切换。
客户端验证已经解决。
如何在服务器验证中处理?
我相信 mvcfoolproof 将适用于这种情况 [https://foolproof.codeplex.com/][1]
它也可以在 nuget 上使用。它添加了额外的验证属性,例如
[RequiredIf]
[RequiredIfNot]
[RequiredIfTrue]
[RequiredIfFalse]
[RequiredIfEmpty]
[RequiredIfNotEmpty]
[RequiredIfRegExMatch]
[RequiredIfNotRegExMatch]
使用起来非常简单。
您可以创建自己的自定义验证属性或使用 MVC Foolproof Validation 然后执行:
class MyClass
{
public int Selector {get;set;} // 1 or 2
[RequiredIf("Selector == 1", ErrorMessage = "Your Error Message")]
public string A_required_for_1 {get;set;}
[RequiredIf("Selector == 1", ErrorMessage = "Your Error Message")]
public string B_required_for_1 {get;set;}
[RequiredIf("Selector == 2", ErrorMessage = "Your Error Message")]
public string C_required_for_2 {get;set;}
[RequiredIf("Selector == 2", ErrorMessage = "Your Error Message")]
public string D_required_for_2 {get;set;}
[Required("Your Error Message")]
public string E_Required_for_both_selectors {get;set;}
}
正如 Win 所提到的,它似乎已经有一段时间没有积极开发了,所以您可能想沿着创建自己的自定义验证属性的路线走下去,这确实需要更多的工作,但您可以拥有更好的控制验证本身。根据需要选择。
对于自定义验证属性,您可以这样做:
public class RequiredIfOtherProperty : ValidationAttribute
{
private readonly string _otherPropertyName;
private readonly string _compareValue;
public RequiredIfOtherProperty(string otherPropertyName, string compareValue)
{
_otherPropertyName = otherPropertyName;
_compareValue = compareValue;
}
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
var otherProperty = validationContext.ObjectType.GetProperty(_otherPropertyName);
if (otherProperty == null)
{
return new ValidationResult($"Property '{_otherPropertyName}' does not exist");
);
var otherPropertyValue = otherProperty.GetValue(validationContext.ObjectInstance, null);
if (!_compareValue.Equals(otherPropertyValue))
{
return new ValidationResult(this.FormatErrorMessage(validationContext.DisplayName));
}
return null;
}
}
它应该让您大致了解您可以做什么,并且您可以根据自己的喜好更改实际验证。然后你可以像普通属性一样使用它,例如
[RequiredIfOtherProperty("SomeProperty", "ValueToCompareWith")]
我确实有一个实体 class,它具有一些必需的属性,具体取决于选择器。
例如:选择器可以假定为“1”或“2”。如果选择器为“1”,则需要一组参数。如果选择器为“2”,则需要另一组参数。
class MyClass{
public int Selector {get;set;} // 1 or 2
public string A_required_for_1 {get;set;}
public string B_required_for_1 {get;set;}
public string C_required_for_2 {get;set;}
public string D_required_for_2 {get;set;}
public string E_Required_for_both_selectors {get;set;}
}
用户应该能够在视图中创建或编辑操作期间在选择器之间切换。
客户端验证已经解决。
如何在服务器验证中处理?
我相信 mvcfoolproof 将适用于这种情况 [https://foolproof.codeplex.com/][1] 它也可以在 nuget 上使用。它添加了额外的验证属性,例如
[RequiredIf]
[RequiredIfNot]
[RequiredIfTrue]
[RequiredIfFalse]
[RequiredIfEmpty]
[RequiredIfNotEmpty]
[RequiredIfRegExMatch]
[RequiredIfNotRegExMatch]
使用起来非常简单。
您可以创建自己的自定义验证属性或使用 MVC Foolproof Validation 然后执行:
class MyClass
{
public int Selector {get;set;} // 1 or 2
[RequiredIf("Selector == 1", ErrorMessage = "Your Error Message")]
public string A_required_for_1 {get;set;}
[RequiredIf("Selector == 1", ErrorMessage = "Your Error Message")]
public string B_required_for_1 {get;set;}
[RequiredIf("Selector == 2", ErrorMessage = "Your Error Message")]
public string C_required_for_2 {get;set;}
[RequiredIf("Selector == 2", ErrorMessage = "Your Error Message")]
public string D_required_for_2 {get;set;}
[Required("Your Error Message")]
public string E_Required_for_both_selectors {get;set;}
}
正如 Win 所提到的,它似乎已经有一段时间没有积极开发了,所以您可能想沿着创建自己的自定义验证属性的路线走下去,这确实需要更多的工作,但您可以拥有更好的控制验证本身。根据需要选择。
对于自定义验证属性,您可以这样做:
public class RequiredIfOtherProperty : ValidationAttribute
{
private readonly string _otherPropertyName;
private readonly string _compareValue;
public RequiredIfOtherProperty(string otherPropertyName, string compareValue)
{
_otherPropertyName = otherPropertyName;
_compareValue = compareValue;
}
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
var otherProperty = validationContext.ObjectType.GetProperty(_otherPropertyName);
if (otherProperty == null)
{
return new ValidationResult($"Property '{_otherPropertyName}' does not exist");
);
var otherPropertyValue = otherProperty.GetValue(validationContext.ObjectInstance, null);
if (!_compareValue.Equals(otherPropertyValue))
{
return new ValidationResult(this.FormatErrorMessage(validationContext.DisplayName));
}
return null;
}
}
它应该让您大致了解您可以做什么,并且您可以根据自己的喜好更改实际验证。然后你可以像普通属性一样使用它,例如
[RequiredIfOtherProperty("SomeProperty", "ValueToCompareWith")]