DropDownListFor枚举不会绑定回模型

时间:2012-10-05 17:55:40

标签: asp.net-mvc asp.net-mvc-3 validation

在我的MVC表单上,我需要将一个下拉框绑定到我的ViewModel上的枚举。我发现这样做的最好方法是here

它似乎最初起作用,但现在我已经在表单中添加了验证,我发现它没有绑定回ViewModel。

这是我的剃刀代码:

<div class="editor-field">
    @Html.DropDownListFor(model => model.response, 
                          new SelectList(Enum.GetValues(typeof(Vouchers.Models.ResponseType))),
                          "Please Select")
</div>

这是我对该领域的视图模型定义:

[DisplayName("Response")]
[Range(1, int.MaxValue, ErrorMessage = "You must select a response before submitting this form.")]
public ResponseType response { get; set; }

问题是我无法提交表格;即使从我的下拉列表中选择了响应,也会显示Range属性的Validation错误消息,并且客户端验证会阻止表单提交。

我相信这是因为下拉列表的SelectList只包含枚举的字符串名称,而不包含基础整数值。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:5)

创建字典,其中Key将是枚举和字符串的整数表示 - 枚举的名称。

@Html.DropDownListFor(model => model.response, 
                      new SelectList(Enum.GetValues(typeof(Vouchers.Models.ResponseType)).OfType<Vouchers.Models.VoucherResponseType>().ToDictionary(x => Convert.ToInt32(x), y => y.ToString()), "Key", "Value"), "Please Select")

抱歉可能出现错误,我还没试过。