1

「otherValue が true の場合、この値は 0 より大きい必要がある」というカスタム検証を作成しようとしています。値を取得することはできますが、現在 otherValue を設定している方法では、値ではなく、プロパティの名前. おそらく文字列として渡されたため. この属性は 5 つまたは 6 つの異なるプロパティにあり、毎回異なる otherValue を呼び出します. 取得方法のヘルプを探していますotherValue の実際の値 (bool です)。

これが私の現在のコードです:

public class MustBeGreaterIfTrueAttribute : ValidationAttribute, IClientValidatable
{
    // get the radio button value
    public string OtherValue { get; set; }

    public override bool IsValid(object value)
    {
        // Here is the actual custom rule
        if (value.ToString() == "0")
        {
            if (OtherValue.ToString() == "true")
            {
                return false;
            }
        }
        // If all is ok, return successful.
        return true;
    }

=====================編集=========================

これが私が今いるところです、そしてそれはうまくいきます!ここで、モデルに属性を追加するときに別の errorMessage を入れることができるように、それを作成する方法についての参照が必要です。

public class MustBeGreaterIfTrueAttribute : ValidationAttribute, IClientValidatable
{
    // get the radio button value
    public string OtherProperty { get; set; }

    protected override ValidationResult IsValid(object value, ValidationContext context)
    {
        var otherPropertyInfo = context.ObjectInstance.GetType();
        var otherValue = otherPropertyInfo.GetProperty(OtherProperty).GetValue(context.ObjectInstance, null);      

        // Here is the actual custom rule
        if (value.ToString() == "0")
        {
            if (otherValue.ToString().Equals("True", StringComparison.InvariantCultureIgnoreCase))
            {
                return new ValidationResult("Ensure all 'Yes' answers have additional data entered.");
            }
        }
        // If all is ok, return successful.
        return ValidationResult.Success;
    }

    // Add the client side unobtrusive 'data-val' attributes
    public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
    {
        var rule = new ModelClientValidationRule();
        rule.ValidationType = "requiredifyes";
        rule.ErrorMessage = this.ErrorMessage;
        rule.ValidationParameters.Add("othervalue", this.OtherProperty);
        yield return rule;
    }

}

だから私はこれを行うことができるはずです:

    [MustBeGreaterIfTrue(OtherProperty="EverHadRestrainingOrder", ErrorMessage="Enter more info on your RO.")]
    public int? ROCounter { get; set; }
4

3 に答える 3

8

にはメソッドのValidationAttributeペアがIsValidあり、シナリオでは他の人を使用する必要があります。

  public class MustBeGreaterIfTrueAttribute : ValidationAttribute
  {
    // name of the OtherProperty. You have to specify this when you apply this attribute
    public string OtherPropertyName { get; set; }

    protected override ValidationResult IsValid(object value, ValidationContext validationContext)
    {
      var otherProperty = validationContext.ObjectType.GetProperty(OtherPropertyName);

      if (otherProperty == null)
        return new ValidationResult(String.Format("Unknown property: {0}.", OtherPropertyName));

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

      if (value.ToString() == "0")
      {
        if (otherPropertyValue != null && otherPropertyValue.ToString() == "true")
        {
          return null;
        }
      }

      return new ValidationResult("write something here");
    }
  }

使用例:

public class SomeModel
{
    [MustBeGreaterIf(OtherPropertyName="Prop2")]
    public string Prop1 {get;set;}
    public string Prop2 {get;set;}
}

参照: http://www.concurrentdevelopment.co.uk/blog/index.php/2011/01/custom-validationattribute-for-comparing-properties/

于 2012-10-25T17:21:03.540 に答える
0

何がしたいのかちょっと理解に苦しむけど、

OtherValue のブール表現を取得したい場合は、次のようにします。

bool.Parse(this.OtherValue);


また、文字列の比較では、大/小文字と空白を取り除くと役立つ場合があります

if (this.OtherValue.ToString().ToLower().Trim() == "true")
于 2012-10-25T14:54:11.977 に答える