1

我正在尝试使用绑定枚举AgeRangeHtml.DropDownListFor但无论我从“视图”页面中选择什么,Controller 都会获得值“0”。谁能帮我解决这个问题?

编辑:控制器代码到位。

枚举类:

public enum AgeRange
{
  Unknown = -1,    
  [Description("< 3 days")]
  AgeLessThan3Days = 1,    
  [Description("3-6 days")]
  AgeBetween3And6 = 2,    
  [Description("6-9 days")]
  AgeBetween6And9 = 3,    
  [Description("> 9 days")]
  AgeGreaterThan9Days = 4
}

看法:

@Html.DropDownListFor(
      model => model.Filter.AgeRangeId,
      @Html.GetEnumDescriptions(typeof(AgeRange)),
      new { @class = "search-dropdown", name = "ageRangeId" }
)

控制器:

public ActionResult Search(int? ageRangeId)
{
   var filter = new CaseFilter { AgeRangeId = (AgeRange)(ageRangeId ?? 0) };
}
4

2 回答 2

1

你很近...

我建议跟随这个人

于 2012-04-24T07:22:50.447 回答
1

您必须为选择列表编写扩展方法才能工作。

我用这个

public static SelectList ToSelectList<TEnum>(this TEnum enumeration) where TEnum : struct
{
  //You can not use a type constraints on special class Enum.
  if (!typeof(TEnum).IsEnum)
    throw new ArgumentException("TEnum must be of type System.Enum");
  var source = Enum.GetValues(typeof(TEnum));
  var items = new Dictionary<object, string>();
  foreach (var value in source)
  {
    FieldInfo field = value.GetType().GetField(value.ToString());
    DisplayAttribute attrs = (DisplayAttribute)field.GetCustomAttributes(typeof(DisplayAttribute), false).First();
    items.Add(value, attrs.GetName());
  }
  return new SelectList(items, Constants.PropertyKey, Constants.PropertyValue, enumeration);
}
于 2012-04-24T07:23:57.827 回答