在我的模型文件中
public enum Title
{
Ms,
Mrs,
Mr
}
我想在注册表单的下拉框中显示这些可选值。
但我不知道怎么做。它不一定要求我使用枚举,只要这些标题可以与 一起使用dropdownlistfor
,请您可以建议我任何方法。谢谢你。
在我的模型文件中
public enum Title
{
Ms,
Mrs,
Mr
}
我想在注册表单的下拉框中显示这些可选值。
但我不知道怎么做。它不一定要求我使用枚举,只要这些标题可以与 一起使用dropdownlistfor
,请您可以建议我任何方法。谢谢你。
你可以像这样绑定它
ddl.DataSource = Enum.GetNames(typeof(Title));
ddl.DataBind();
如果您还想获得选定的值,请执行以下操作
Title enumTitle = (Title)Enum.Parse(ddl.SelectedValue);
有几种方法可以做到这一点。
一种是创建一个返回选择列表的方法。
private static SelectList ToSelectList(Type enumType, string selectedItem)
{
var items = new List<SelectListItem>();
foreach (var item in Enum.GetValues(enumType))
{
var title = ((Enum)item).GetDescription();
var listItem = new SelectListItem
{
Value = ((int)item).ToString(),
Text = title,
Selected = selectedItem == item.ToString()
};
items.Add(listItem);
}
return new SelectList(items, "Value", "Text");
}
第二种方法是创建辅助方法
public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, string optionLabel, 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 = GetEnumDescription(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, optionLabel, htmlAttributes);
}
public static string GetEnumDescription<TEnum>(TEnum value)
{
FieldInfo fi = value.GetType().GetField(value.ToString());
DescriptionAttribute[] attributes = (DescriptionAttribute[])fi.GetCustomAttributes(typeof(DescriptionAttribute), false);
if ((attributes != null) && (attributes.Length > 0))
{
return attributes[0].Description;
}
return value.ToString();
}
我使用了一些东西的组合。首先,这是 Enums 的扩展方法,用于从枚举类型中获取集合中的所有枚举项:
public static class EnumUtil
{
public static IEnumerable<T> GetEnumValuesFor<T>()
{
return Enum.GetValues(typeof(T)).Cast<T>();
}
}
然后,我有一些代码可以将列表转换为列表。您可以指示您传入的哪些值已经被选中(下拉列表只有 1 个,但您也可以使用它来为 CheckBoxList 提供动力),如果需要,还可以指示要排除的值。
public static List<SelectListItem> GetEnumsByType<T>(bool useFriendlyName = false, List<T> exclude = null,
List<T> eachSelected = null, bool useIntValue = true) where T : struct, IConvertible
{
var enumList = from enumItem in EnumUtil.GetEnumValuesFor<T>()
where (exclude == null || !exclude.Contains(enumItem))
select enumItem;
var list = new List<SelectListItem>();
foreach (var item in enumList)
{
var selItem = new SelectListItem();
selItem.Text = (useFriendlyName) ? item.ToFriendlyString() : item.ToString();
selItem.Value = (useIntValue) ? item.To<int>().ToString() : item.ToString();
if (eachSelected != null && eachSelected.Contains(item))
selItem.Selected = true;
list.Add(selItem);
}
return list;
}
public static List<SelectListItem> GetEnumsByType<T>(T selected, bool useFriendlyName = false, List<T> exclude = null,
bool useIntValue = true) where T : struct, IConvertible
{
return GetEnumsByType<T>(
useFriendlyName: useFriendlyName,
exclude: exclude,
eachSelected: new List<T> { selected },
useIntValue: useIntValue
);
}
然后在我的视图模型中,当我需要填充 DropdownList 时,我可以从该辅助方法中获取列表,如下所示:
public class AddressModel
{
public enum OverrideCode
{
N,
Y,
}
public List<SelectListItem> OverrideCodeChoices { get {
return SelectListGenerator.GetEnumsByType<OverrideCode>();
} }
}