具有文本 Select 选项值的枚举的通用 EditorTemplate

Generic EditorTemplate for an Enum with Text Select Option Value

我一直在使用这个枚举编辑器模板:

@model Enum

@{
    var htmlAttributesFromView = ViewData["htmlAttributes"] ?? new { };
    var htmlAttributes = Html.MergeHtmlAttributes(htmlAttributesFromView, new { @class = "form-control" });
}



<div class="form-group">
    @Html.LabelFor(model => model, htmlAttributes: new { @class = "control-label col-md-3" })
    <div class="col-md-8">

        @Html.EnumDropDownListFor(x => x, htmlAttributes)
        @Html.ValidationMessageFor(model => model)
    </div>
    <a class="infoonclick col-md-1" title="@Html.DisplayNameFor(model => model)" data-content="@Html.DescriptionFor(model => model)">
        <span class="fa fa-info-circle"></span>
    </a>
</div>

EnumDropDownListFor() 给我这样的东西:

<option value="0">blah0</option>
<option value="1">blah1</option>

我想创建一个对值和文本都使用枚举文本(或显示名称)的版本。

<option value="blah0">blah0</option>
<option value="blah1">blah1</option>

我找到了一种方法,可以使用键入特定枚举的模板来完成此操作,但如果可能的话,我想对所有枚举进行通用操作。

这是一个应该有帮助的扩展方法:

public static MvcHtmlString EnumTextDropDownListFor<TModel>(this HtmlHelper<TModel> html, Expression<Func<TModel, Enum>> expression, Type enumType, object htmlAttributes)
{
    var enumValues = Enum.GetValues(enumType).OfType<Enum>().Select(v => v.ToString()).ToArray();
    var selectList = new SelectList(enumValues.Select(v => new SelectListItem { Text = v, Value = v }));
    return html.DropDownListFor(expression, selectList, htmlAttributes);
}