C#MVC Html.CheckBoxFor不绑定到模型

时间:2015-01-22 02:59:35

标签: c# asp.net-mvc checkbox

我有一个令人沮丧的问题,在发布回控制器时,我似乎无法让Model绑定与CheckBoxFor一起使用。我的模型只返回null。任何帮助将不胜感激!

查看

@model IEnumerable<FFR.Context.Matchup>

@{
Layout = null;
}

<!DOCTYPE html>

<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>View1</title>
</head>
<body>
<p>
    @Html.ActionLink("Create New", "Create")
</p>
@using (Html.BeginForm(Html.BeginForm("Submit", "Matchups", FormMethod.Post)))
{
    @foreach (var item in Model) {
    <tr>
        <td>@Html.CheckBoxFor(modelItem => item.isChecked)</td>

        <td>
            @Html.DisplayFor(modelItem => item.MatchupDate)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.Spread)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.HomeScore)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.AwayScore)
        </td>
    }

    <tr><td><input type="submit" value="Submit" /></td></tr>

</table>
}
</body>
</html>

控制器

[HttpPost]
public ActionResult Submit(IEnumerable<Matchup> model)
{

        //processing

}

模型

public partial class Matchup
{
    public Matchup()
    {
        this.Bets = new HashSet<Bet>();
    }

    public int MatchupId { get; set; }
    public int HomeTeamId { get; set; }
    public int AwayTeamId { get; set; }
    public int LocationId { get; set; }
    public System.DateTime MatchupDate { get; set; }
    public int WeekId { get; set; }
    public int SeasonId { get; set; }
    public Nullable<decimal> Spread { get; set; }
    public Nullable<decimal> HomeScore { get; set; }
    public Nullable<decimal> AwayScore { get; set; }
    public string TimeLeft { get; set; }
    public Nullable<System.DateTime> LastUpdate { get; set; }
    public Boolean isChecked { get; set; }
}

2 个答案:

答案 0 :(得分:4)

您需要使用for循环,以便您的控件正确使用索引器命名。将模型更改为@model IList<FFR.Context.Matchup>,然后在视图中

for(int i = 0; i < Model.Count; i++)
{
  @Html.CheckBoxFor(m => m[i].isChecked)
  ....
}

如果您无法使用IList,那么您可以为模型使用自定义EditorTemplaterefer this example

旁注:为什么要使用Layout = null;并在视图中渲染head(而不是指定布局)?

答案 1 :(得分:0)

希望此链接能让您深入了解模型绑定如何与列表配合使用。 http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx/

请注意,您在视图中做了太多事情。尝试使用编辑器模板来获得更简单的视图。

另外,我注意到2个来自Begin表单的调用。你真的打算这样用吗?