c# MVC -根据模型动态获取属性名



在我的mvc项目中,我有不同的自定义验证属性。其中之一是检查一个属性的值与另一个属性的值。

正如许多文章中所述,我添加了类似

的内容
result.ValidationParameters.Add("otherproperty", _otherPropertyHtml);
result.ValidationParameters.Add("comparetype", _compareType);
result.ValidationParameters.Add("equalitytype", _equalityType);

到返回的ModelClientValidationRule对象。

我现在的问题是,如果我要检查的属性被封装在另一个对象中,验证将不起作用。

如果我创建像

这样的内容
@Html.TextBoxFor(m => m.ValueOne)
@Html.TextBoxFor(m => m.ValueTwo)

验证将正常工作,因为它呈现

data-val-otherproperty="ValueTwo"

我的问题是以下

@Html.TextBoxFor(m => m.IntermediateObject.ValueOne)
@Html.TextBoxFor(m => m.IntermediateObject.ValueTwo)

这将呈现两个名称为IntermediateObject_ValueOneIntermediateObject.ValueTwo的文本框。但是第一个文本框仍然是data- value -otherproperty="ValueOne"

如何实现data-val-otherproperty总是具有其他属性的正确名称?

我的想法是类似HtmlHelper<>。NameFor(m =>…)或使用反射的东西?

更新1 -根据注释添加代码

[AttributeUsage(AttributeTargets.Property | AttributeTargets.Class, AllowMultiple = false)]
public class CustomCompareToOther : ValidationAttribute, IClientValidatable
{
    // private backing-field
    private readonly string _otherPropertyName;
    // constructor
    public OemCompareToOther(string otherPropertyName)
    {
        _otherPropertyName = otherPropertyName;
    }
    // implementation of IClientValidatable
    public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
    {
        var result = new ModelClientValidationRule
            {
                ErrorMessage = FormatErrorMessage(metadata.DisplayName),
                ValidationType = "customcomparetoother"
            };
        // add the property-name so it is known when rendered for client-side validation
        result.ValidationParameters.Add("otherproperty", _otherPropertyHtml); // here I would need IntermediateObject.ValueTwo instead of only ValueTwo
        yield return result;
    }
}

模型级的使用将是

public class MyModel
{
    [CustomCompareToOther("ValueOTwo", CompareType.NotEqual, PropertyType.String)]
    public string ValueOne { get; set; }    
    [CustomCompareToOther("ValueTwo", CompareType.NotEqual, PropertyType.String)]
    public string ValueTwo { get; set; }
}

我要在View中输入的是类似

这样的内容
public class ViewModel
{
    public MyModel IntermediateObject { get; set; }
}

return View(new ViewModel())。因此,在渲染的HTML中,我将有一个输入

<input type="text" name="IntermediateObject_ValueOne" id="IntermediateObject.ValueOne" data-val-customcomparetoother-otherpropertyname="ValueTwo" />
<input type="text" name="IntermediateObject_ValueTwo" id="IntermediateObject.ValueTwo" data-val-customcomparetoother-otherpropertyname="ValueOne" />

但是我需要

<input type="text" name="IntermediateObject_ValueOne" id="IntermediateObject.ValueOne" data-val-customcomparetoother-otherpropertyname="IntermediateObject.ValueTwo" />
<input type="text" name="IntermediateObject_ValueTwo" id="IntermediateObject.ValueTwo" data-val-customcomparetoother-otherpropertyname="IntermediateObject.ValueOne" />

您可以使用[Compare("PropertyName")]数据注释

视图模型中的示例:

[Display(Name = "New Password")]
[DataType(DataType.Password)]
public string NewPassword { get; set; }
[Display(Name = "Confirm Password")]
[DataType(DataType.Password)]
[Compare("NewPassword")]
public string PasswordConfirmation { get; set; }

请记住将System.ComponentModel.DataAnnotations命名空间添加到using语句

相关内容

  • 没有找到相关文章

最新更新