最佳答案
我的 MVC3应用程序 DropDownListFor
出了点问题。我曾经能够使用 StackOverflow 来弄清楚如何让它们出现在视图中,但是现在我不知道如何在视图模型中捕获提交时相应属性中的值。为了使其正常工作,我必须创建一个具有 ID 和 value 属性的内部类,然后我必须使用 IEnumerable<Contrib>
来满足 DropDownListFor
参数的要求。然而,现在 MVC FW 应该如何将这个下拉列表中选择的值映射回我的视图模型中的简单字符串属性呢?
public class MyViewModelClass
{
public class Contrib
{
public int ContribId { get; set; }
public string Value { get; set; }
}
public IEnumerable<Contrib> ContribTypeOptions =
new List<Contrib>
{
new Contrib {ContribId = 0, Value = "Payroll Deduction"},
new Contrib {ContribId = 1, Value = "Bill Me"}
};
[DisplayName("Contribution Type")]
public string ContribType { get; set; }
}
在我的视图中,我把下拉菜单放在页面上,如下所示:
<div class="editor-label">
@Html.LabelFor(m => m.ContribType)
</div>
<div class="editor-field">
@Html.DropDownListFor(m => m.ContribTypeOptions.First().ContribId,
new SelectList(Model.ContribTypeOptions, "ContribId", "Value"))
</div>
当我提交表单时,ContribType
(当然)为空。
做这件事的正确方法是什么?