我的ASP.NET MVC 3应用程序出现问题。我在我的模型中有2个属性,我只想在我的视图中根据其中任何一个为空而需要其中一个属性。例如,如果我输入电话号码,则不再需要电子邮件,反之亦然,但如果我将两者都留空,则应该需要1,下面是我的模型:
[Display(Name = "Contact Phone Number:")]
[MaxLength(150)]
public string ContactPhoneNumber { get; set; }
[Display(Name = "Contact Email Address:")]
[MaxLength(100)]
public string ContactEmailAddress { get; set; }
我是否需要创建自定义属性来验证我的模型?如果是,我将如何实现这一目标?
答案 0 :(得分:23)
您可以在类上实现IValidatableObject
并提供实现自定义逻辑的Validate()
方法。如果您希望确保提供一个自定义验证逻辑,请将其与客户端上的自定义验证逻辑相结合。我发现这比实现属性更容易。
public class ContactModel : IValidatableObject
{
...
public IEnumerable<ValidationResult> Validate( ValidationContext context )
{
if (string.IsNullOrWhitespace( ContactPhoneNumber )
&& string.IsNullOrWhitespace( ContactEmailAddress ))
{
yield return new ValidationResult( "Contact Phone Number or Email Address must be supplied.", new [] { "ContactPhoneNumber", "ContactEmailAddress" } );
}
}
}
要使客户端的所有内容正常工作,您需要将以下脚本添加到视图中:
<script type="text/javascript">
$(function() {
$('form').validate();
$('form').rules('add', {
"ContactPhoneNumber": {
depends: function(el) { return !$('#ContactEmailAddress').val(); }
}
});
});
</script>
答案 1 :(得分:15)
[RequiredIf("ContactPhoneNumber == null",
ErrorMessage = "At least email or phone should be provided.")]
public string ContactEmailAddress { get; set; }
[RequiredIf("ContactEmailAddress == null",
ErrorMessage = "At least email or phone should be provided.")]
public string ContactPhoneNumber { get; set; }
答案 2 :(得分:1)
以下是有关条件验证的MSDN博客文章:http://blogs.msdn.com/b/simonince/archive/2011/02/04/conditional-validation-in-asp-net-mvc-3.aspx
答案 3 :(得分:1)
我知道你已经有了一个解决方案,但我遇到了类似的情况,所以也许我的解决方案对其他人有帮助。我使用客户端验证实现了自定义属性。这是我的博文:http://hobbscene.com/2011/10/22/conditional-validation/