使用Razor在POST上使用Model.List为null

时间:2014-08-06 11:56:06

标签: c# asp.net-mvc

我的观点:

@foreach(var item in Model.List)
{
  @Html.HiddenFor(model => item.UserId)
  @Html.HiddenFor(model => item.Name)
  @Html.HiddenFor(model => item.Age)

  @Html.CheckBoxFor(model => item.IsChecked, new { id = item.UserId })
  <label>@item.Name</label>
}

我的控制器:

[HttpPost]
public ActionResult Create(MyModel Model)
{
..

Model.List是否为空?

列表在GET上填充正常。但是,在POST上(此特定视图是表单)Model.List为空。我已尝试使用HiddenFor帮助程序,但尚未成功。

任何建议/答案都表示赞赏。感谢。

1 个答案:

答案 0 :(得分:17)

您需要使用for循环而不是foreach循环才能使数据绑定与集合一起正常工作。

因此,不要执行foreach循环,而是将代码更改为:

@for (var i = 0; i < Model.List.Count(); i++)
{
  @Html.HiddenFor(model => Model.List[i].UserId)
  @Html.HiddenFor(model => Model.List[i].Name)
  @Html.HiddenFor(model => Model.List[i].Age)

  @Html.CheckBoxFor(model => Model.List[i].IsChecked, new { id = Model.List[i].UserId })
  <label>@Model.List[i].Name</label>
}

这使得ModelBinder可以跟踪您尝试绑定的集合中项目的索引。

如果您在完成此操作后查看生成的HTML,您会注意到生成的输入控件将如下所示:

<input type="hidden" name="List[0].IsChecked" />

这使模型绑定器能够知道它绑定到列表中的哪个项目。