我有一个这样的枚举:
public enum PaymentType
{
Self=1,
Insurer=2,
PrivateCompany=3
}
我在Controller中将它显示为像这样的选择框选项:
List<Patient.PaymentType> paymentTypeList =
Enum.GetValues(typeof (Patient.PaymentType)).Cast<Patient.PaymentType>().ToList();
ViewBag.PaymentType = new SelectList(paymentTypeList);
在这里我可以看到只有枚举的字符串部分(示例&#34; Self&#34;)才会到达前端,所以我不会得到这个值(例子&#34; 1& #34;)在我的下拉列表中的枚举。如何将文本和枚举值传递给选择列表?
答案 0 :(得分:4)
您可以编写如下的扩展方法:
public static System.Web.Mvc.SelectList ToSelectList<TEnum>(this TEnum obj)
where TEnum : struct, IComparable, IFormattable, IConvertible // correct one
{
return new SelectList(Enum.GetValues(typeof(TEnum)).OfType<Enum>()
.Select(x =>
new SelectListItem
{
Text = Enum.GetName(typeof(TEnum), x),
Value = (Convert.ToInt32(x)).ToString()
}), "Value", "Text");
}
并在行动中使用它:
public ActionResult Test()
{
ViewBag.EnumList = PaymentType.Self.ToSelectList();
return View();
}
并在视图中:
@Html.DropDownListFor(m=>m.SomeProperty,ViewBag.EnumList as SelectList)
<select id="EnumDropDown" name="EnumDropDown">
<option value="1">Self</option>
<option value="2">Insurer</option>
<option value="3">PrivateCompany</option>
</select>
答案 1 :(得分:1)
public enum PaymentType
{
Self=1,
Insurer=2,
PrivateCompany=3
}
获得自我价值:
int enumNumber = (int)PaymentType.Self; //enumNumber = 1
例:
getEnum(PaymentType.Self);
private void getEnum(PaymentType t)
{
string enumName = t.ToString();
int enumNumber = (int)t;
MessageBox.Show(enumName + ": " + enumNumber.ToString());
}
答案 2 :(得分:0)
MVC5中有一个名为SelectExtensions.EnumDropDownListFor的扩展方法,它会为您生成下拉列表,并将响应绑定回模型中的枚举属性。