1

我正在使用 Asp.net MVC3、razor 视图引擎和数据注释进行模型验证。

我有一个表单,其中必须输入 Url 详细信息(Url 和描述)。这两个字段都不是必需的。但是,如果我输入一个字段,则必须要求其他字段。如果我输入描述 Url 是必需的并且格式正确,并且如果我输入 Url,那么描述是必需的。

我为数据注释创建了一个自定义验证器。它验证并输出错误消息。但我的问题是 ValidationMessageFor 生成的错误消息位置不正确。即,如果我输入描述,则所需的 url 消息是描述的一部分。我希望该消息作为 ValidationMessageFor url 字段的一部分。

任何人都可以帮助我吗?提前致谢。以下是我使用的代码

[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]

public sealed class IsExistAttribute : ValidationAttribute, IClientValidatable
{
private const string DefaultErrorMessage = "{0} is required."; 
public string OtherProperty { get; private set; } 
public IsExistAttribute (string otherProperty)
    : base(DefaultErrorMessage)
{
    if (string.IsNullOrEmpty(otherProperty))
    {
        throw new ArgumentNullException("otherProperty");
    }

    OtherProperty = otherProperty;
}

public override string FormatErrorMessage(string name)
{
    return string.Format(ErrorMessageString, name, OtherProperty);
}

protected override ValidationResult IsValid(object value,ValidationContext validationContext)
{
    if (value != null)
    {
        var otherProperty = validationContext.ObjectInstance.GetType()
                                             .GetProperty(OtherProperty);

        var otherPropertyValue = otherProperty
                                    .GetValue(validationContext.ObjectInstance, null);
        var strvalue=Convert.ToString(otherPropertyValue)

        if (string.IsNullOrEmpty(strvalue))
        {
            //return new ValidationResult(FormatErrorMessage(validationContext.DisplayName));

            return new ValidationResult(FormatErrorMessage(validationContext.DisplayName),new[] { OtherProperty});

        }
    }

    return ValidationResult.Success;
 } 

public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata,ControllerContext context)
{
    var clientValidationRule = new ModelClientValidationRule()
    {
       ErrorMessage = FormatErrorMessage(metadata.GetDisplayName()),
       ValidationType = "isexist"
    };

   clientValidationRule.ValidationParameters.Add("otherproperty", OtherProperty); 
   return new[] { clientValidationRule };           
}      
}

在模型中

[Display(Name = "Description")]
[IsExist("Url")]
public string Description { get; set; }

[Display(Name = "Url")]
[IsExist("Description")]
[RegularExpression("(http(s)?://)?([\w-]+\.)+[\w-]+(/[\w- ;,./?%&=]*)?", ErrorMessage  = "Invalid Url")]
public string Url { get; set; }

并且在视野中

<div class="editor-field">
@Html.TextBoxFor(m => m.Description )
@Html.ValidationMessageFor(m => m.Description)
</div>
<div class="editor-field">
@Html.TextBoxFor(m => m.Url)
@Html.ValidationMessageFor(m => m.Url)
</div>

不显眼的验证逻辑

(function ($) {
    $.validator.addMethod("isexist", function (value, element, params) {
        if (!this.optional(element)) {
            var otherProp = $('#' + params)
            return (otherProp.val() !='' &&  value!='');//validation logic--edited by Rajesh 
        }
        return true;
    });
    $.validator.unobtrusive.adapters.addSingleVal("isexist", "otherproperty");                        
} (jQuery));  
4

1 回答 1

0

您应该以相反的方式进行验证。改变:

if (string.IsNullOrEmpty(otherPropertyValue))
    {
        //return new ValidationResult(FormatErrorMessage(validationContext.DisplayName));

        return new ValidationResult(FormatErrorMessage(validationContext.DisplayName),new[] { OtherProperty});

    }

到:

if (string.IsNullOrEmpty(Convert.ToString(value)) && !string.IsNullOrEmpty(otherPropertyValue))
    {
        return new ValidationResult(FormatErrorMessage(validationContext.DisplayName));
    }

并删除if (value != null)

然后将被无效的字段是空的,如果另一个被填充。

于 2012-11-13T10:38:11.210 回答