1

我可以找到各种关于如何在 MVC 3 中对项目列表进行模型绑定的文章,即使是在表中,但在每个示例中,行都代表列表中的一条记录。我的观点的要求是每条记录必须是一列。我无法从以下文章中获得任何技巧:

http://blog.stevensanderson.com/2010/01/28/editing-a-variable-length-list-aspnet-mvc-2-style/ http://dotnetslackers.com/articles/aspnet/Understanding-ASP- NET-MVC-Model-Binding.aspx#s8-binding-with-a-list-of-class-types

这是我观点的相关部分:

    <table>
        <thead>
            <tr>
                <th>Name</th>
@foreach (var fact in Model.Facts)
{
                <th>@fact.Name</th>
}
            </tr>
        </thead>
        <tr>
            <td>Value</td>
@foreach (var fact in Model.Facts)
{
            <td>@Html.TextBox("Value" + fact.FactID.ToString(), fact.Value)</td>
}
        </tr>
        <tr>
            <td>Sample</td>
@foreach (var fact in Model.Facts)
{
            <td>@Html.TextBox("Sample" + fact.FactID.ToString(), fact.Sample)</td>
}
        </tr>
        <tr>
            <td>Default?</td>
@foreach (var fact in Model.Facts)
{
            <td>@Html.RadioButton("Default", fact.FactID, fact.Default)</td>
}
        </tr>
        <tr>
            <td></td>
@foreach (var fact in Model.Facts)
{
            <td>@Html.ActionLink("Detail", "Details", "Fact", new { id = fact.FactID }, null)</td>
}
        </tr>
    </table>

在表单的 post 操作方法中,我接受了一个 FormCollection,我手动从中提取数据。相反,我想接受一个 IList 集合并让 MVC 模型绑定器为我解决所有问题。

这是我的控制器操作:

[HttpPost]
[Authorize]
public RedirectToRouteResult Facts(FormCollection form)
{
    int factListId = int.Parse(form["FactListID"]);
    FactList factList = Repository.Find(factListId);
    int defaultId = int.Parse(form["Default"]);
    foreach (Fact fact in factList.Facts)
    {
        string factId = fact.FactID.ToString();
        string toParse = form["Value" + factId];
        fact.Value = toParse.Length == 0 ? null : new Nullable<double>(double.Parse(toParse));
        fact.TextValue = form["Value" + factId];
        toParse = form["Sample" + factId];
        fact.Sample = toParse.Length == 0 ? null : new Nullable<int>(int.Parse(toParse));
        fact.Default = (fact.FactID == defaultId);
    }
    Repository.Save();
    return RedirectToAction("Index");
}

有人能指出我正确的方向吗?我想那里有信息,但我只是在大量信息中找不到关于如何做到这一点的信息,每条记录方式更“标准”1行。

谢谢

4

1 回答 1

3

如果你有一个 IList,那么做这样的事情应该可以。如果您通过数字索引生成输入,那么您可以为 MVC 提供足够的信息以在发布时绑定它们。

@for (int i = 0; i< Model.Facts.Count(); i++)
{
      <td>@Html.TextBoxFor(m => m.Facts[i].Value)</td>
}

<--! Do other fields the same way -->

您的控制器发布操作应接受与您的 ViewModel 类型相同的参数。然后您应该看到 Facts IList 已正确绑定。

于 2012-06-04T20:54:15.750 回答