我正在尝试创建一个包含从数据库动态创建的复选框列表的视图,然后在回发表单时检索选定的列表。
我的 EF 模型包含一个类:
public class ItemIWouldLikeACheckboxFor {
public int Id { get; set; }
public string Description { get; set; }
}
我有一个包含以下列表的视图模型:
public class PageViewModel {
// various other properties
public List<ItemIWouldLikeACheckboxFor> checkboxList { get; set; }
}
我的控制器获取方法:
public ActionResult Create() {
var viewModel = new PageViewModel();
viewModel.checkboxList = db.ItemIWouldLikeACheckboxFors.ToList();
return View(viewModel);
}
我的观点:
<% using (Html.BeginForm()) { %>
<%-- other stuff here... %>
<% foreach (var item in checkboxList) { %>
<%: Html.CheckBox( <!-- what exactly ?????? -->) %>
<% } %>
<%-- other stuff here...%>
<input type="submit" />
<% } %>
我的控制器发布方法:
[HttpPost]
public ActionResult Create(PageViewModel viewModel) {
// do stuff with other fields
// I would like to do something like:
foreach (var item in selectedCheckBoxes) {
// do stuff
}
}
我似乎无法让它工作。我的基本问题与代码片段中的注释混合在一起,但回顾一下:
- 我的视图模型好吗?(我是否需要添加任何内容来捕获所选内容,而不是简单地显示列表?)
- 我究竟应该在视图中放置什么来呈现每个复选框?
- 发布后如何访问控制器中选定的复选框?