asp.net-mvc – 使用ASP.NET MVC2中的DataAnnotations显示友好的本地化枚举值

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 使用ASP.NET MVC2中的DataAnnotations显示友好的本地化枚举值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在MVC2中显示本地化枚举属性的推荐方法是什么?

如果我有这样的模型:

public class MyModel {
  public MyEnum MyEnumValue { get; set; } 
}

并在视图中的一行如下:

<%: Html.DisplayFor(model => model.MyEnumValue) %>

我希望通过DisplayAttribute注释枚举值,如下所示:

public enum MyEnum
{
    [Display(Name="EnumValue1_Name",ResourceType=typeof(Resources.MyEnumResources))]
    EnumValue1,[Display(Name="EnumValue2_Name",ResourceType=typeof(Resources.MyEnumResources))]
    EnumValue2,[Display(Name="EnumValue3_Name",ResourceType=typeof(Resources.MyEnumResources))]
    EnumValue3
}

不支持似乎还有其他需要的东西。实施它最好的方法是什么?

解决方法

您可以尝试使用DescriptionAttribute。

例如。

在视图模型中:

public enum MyEnum
        {
             [Description("User Is Sleeping")]
            Asleep,[Description("User Is Awake")]
            Awake
        }

 public string GetDescription(Type type,string value)
        {
            return ((DescriptionAttribute)(type.GetMember(value)[0].GetCustomAttributes(typeof(DescriptionAttribute),false)[0])).Description;
        }

在视图中:

Model.GetDescription(Model.myEnum.GetType(),Model.myEnum) to retrieve the value set in Description.

我使用类似的东西来设置我的Html.Dropdown中的displayname和值。

原文链接:https://www.f2er.com/aspnet/252739.html

猜你在找的asp.Net相关文章