0

我有一个包含国家/地区的枚举:

public enum CountryEnum
{
    [Display(Name = "AF", ResourceType = typeof(Global))]
    AF,

    [Display(Name = "AL", ResourceType = typeof(Global))]
    AL,

    [Display(Name = "DZ", ResourceType = typeof(Global))]
    DZ,
};

如您所见,我使用 DataAnnotations 来本地化这些值。

现在我想显示一个包含所有本地化国家名称的下拉列表。我想出了这段代码:

public static string GetDisplayName<TEnum>(TEnum value)
{        
    FieldInfo fi = value.GetType().GetField(value.ToString());

    DisplayAttribute[] attributes = 
        (DisplayAttribute[])fi.GetCustomAttributes(
            typeof(DisplayAttribute), false);

        if ((attributes != null) && (attributes.Length > 0))
            return attributes[0].Name;
        else
            return value.ToString();
}

我有一个使用上述方法的 Html 助手:

public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, object htmlAttributes)
{
    ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
    Type enumType = GetNonNullableModelType(metadata);
    IEnumerable<TEnum> values = Enum.GetValues(enumType).Cast<TEnum>();

    IEnumerable<SelectListItem> items = from value in values
                                        select new SelectListItem
                                        {
                                            Text = GetDisplayName(value),
                                            Value = value.ToString(),
                                            Selected = value.Equals(metadata.Model)
                                        };

    // If the enum is nullable, add an 'empty' item to the collection
    if (metadata.IsNullableValueType)
        items = SingleEmptyItem.Concat(items);

    return htmlHelper.DropDownListFor(expression, items, htmlAttributes);
}

DropDown 正确呈现,但是GetDisplayName不返回本地化值,它只显示名称属性(例如,第一个条目的 AF)。

如何修改GetDisplayName方法以返回本地化值?

4

2 回答 2

2

您需要更新您的GetDisplayName方法以使用该GetName()方法而Name不是DisplayAttribute.

像这样:

public static string GetDisplayName<TEnum>(TEnum value)
{
    FieldInfo fi = value.GetType().GetField(value.ToString());

    DisplayAttribute[] attributes = (DisplayAttribute[])fi.
        GetCustomAttributes(typeof(DisplayAttribute), false);

    if ((attributes != null) && (attributes.Length > 0))
        return attributes[0].GetName();
    else
        return value.ToString();
}

来自 MSDN 文档DisplayAttribute.Name

不要使用此属性来获取 Name 属性的值。请改用 GetName 方法。

GetName()方法的 MSDN 文档有这样的说法:

如果已指定 ResourceType 属性并且 Name 属性表示资源键,则返回 Name 属性的本地化字符串;否则,Name 属性的非本地化值。

于 2013-05-11T09:35:16.870 回答
0

我遇到了类似的问题,像你一样设置了显示属性(因为类使用相同的属性来加载本地化更容易),所以拿了你的初始代码并稍微调整了一下,现在它按预期显示了本地化字符串。我不认为这是最聪明或最优化的方法,但它确实有效。希望这就是你的意图。

public static string GetDisplayName<TEnum>(TEnum value)
    {
        FieldInfo fi = value.GetType().GetField(value.ToString());

        DisplayAttribute[] attributes = (DisplayAttribute[])fi.
            GetCustomAttributes(typeof(DisplayAttribute), false);

        if ((attributes != null) && (attributes.Length > 0))
        {
            string key = attributes[0].Name;
            string localizedString = attributes[0].ResourceType.GetProperty(key).GetValue("").ToString();
            return localizedString;
        }
        else
            return value.ToString();
    }
于 2015-10-24T22:38:13.500 回答