如何将DisplayName放在ErrorMessage格式上

时间:2010-08-24 15:11:56

标签: c# asp.net-mvc data-annotations

我有这样的事情:

    [DisplayName("First Name")]
    [Required(ErrorMessage="{0} is required.")]
    [StringLength(50, MinimumLength = 10, ErrorMessage="{0}'s length should be between {2} and {1}.")]
    public string Name { get; set; }

我希望得到以下输出:

  • 名字是必需的。
  • 名字的长度应在10到50之间。

使用ASP.NET MVC2错误摘要时有效,但当我尝试手动验证时,如下所示:

        ValidationContext context = new ValidationContext(myModel, null, null);
        List<ValidationResult> results = new List<ValidationResult>();
        bool valid = Validator.TryValidateObject(myModel, context, results, true);

结果是:

  • 姓名是必需的。
  • 姓名的长度应在10到50之间。

怎么了?感谢。

2 个答案:

答案 0 :(得分:35)

使用[DisplayName]属性中的[Display]属性,而不是(或可能与此一起)使用System.ComponentModel.DataAnnotations属性。填充其Name属性。

有了这个,您可以使用ValidationContext DisplayName的内置验证属性或自定义属性。

如,

[Display(Name="First Name")] // <-- Here
[Required(ErrorMessage="{0} is required.")]
[StringLength(50, MinimumLength = 10, ErrorMessage="{0}'s length should be between {2} and {1}.")]
public string Name { get; set; }

答案 1 :(得分:10)

好吧,我想我做到了。

我必须创建另一个属性:

public class RequiredAttribute : System.ComponentModel.DataAnnotations.RequiredAttribute
{
    private String displayName;

    public RequiredAttribute()
    {
        this.ErrorMessage = "{0} is required";
    }

    protected override ValidationResult IsValid(object value, ValidationContext validationContext)
    {
        var attributes = validationContext.ObjectType.GetProperty(validationContext.MemberName).GetCustomAttributes(typeof(DisplayNameAttribute), true);
        if (attributes != null)
            this.displayName = (attributes[0] as DisplayNameAttribute).DisplayName;
        else
            this.displayName = validationContext.DisplayName;

        return base.IsValid(value, validationContext);
    }

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

我的模特是:

    [DisplayName("Full name")]
    [Required]
    public string Name { get; set; }

值得庆幸的是,这个DataAnnotation是可扩展的。