1

モデルの検証には、Asp.net MVC3、カミソリ ビュー エンジン、およびデータ注釈を使用しています。

Url の詳細 (Url と説明) を入力する必要があるフォームがあります。両方のフィールドは必須ではありません。ただし、1 つのフィールドを入力する場合は、他のフィールドを入力する必要があります。説明 URL を入力する場合は必須であり、正しい形式であり、Url を入力する場合は説明が必要です。

データアノテーション用の customvalidator を作成しました。バリデーションを行い、エラーメッセージを出力します。しかし、私の問題は 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 に答える