3

我的问题是如何从视图中将表数据返回到控制器?

我的模型中有课程:

public class Company
{
    public string Name { get; set; }
    public int ID { get; set; }
    public string Address { get; set; }
    public string Town { get; set; }
}

我将公司名单传递给我的观点:

    @model IEnumerable<MyTestApp.Web.Models.Company>
    ....
    @using (Html.BeginForm("Edit", "Shop"))
    {
    <table id="example">
        <thead>
            <tr>
                <th>
                    @Html.DisplayNameFor(model => model.Name)
                </th>
                <th>
                    @Html.DisplayNameFor(model => model.Address)
                </th>
                <th>
                    @Html.DisplayNameFor(model => model.Town)
                </th>
            </tr>
        </thead>
        <tbody>
            @foreach (var item in Model) {
                <tr>
                    <td>
                        @Html.EditorFor(modelItem => item.Name)
                    </td>
                    <td>
                        @Html.EditorFor(modelItem => item.Address)
                    </td>
                    <td>
                        @Html.EditorFor(modelItem => item.Town)
                    </td>
                </tr>
            }   
        </tbody>
    </table>

    <input type="submit" value="Submit" />
}

一切看起来都很好,但我不明白如何在控制器中获取修改后的数据?我使用了这些方法:

public ActionResult Edit(IEnumerable<Company> companies)
    {
        // but companies is null
        // and ViewData.Model also is null

        return RedirectToAction("SampleList");
    }

我需要访问修改后的对象,我做错了什么?

更新:感谢webdeveloper,我只需要使用“for”循环而不是“foreach”循环。正确的版本是

<tbody>
        @for (int i = 0; i < Model.Count(); i++ ) {
            <tr>                   
                <td>
                    @Html.EditorFor(modelItem => modelItem[i].Name)
                </td>
                <td>
                    @Html.EditorFor(modelItem => modelItem[i].Address)
                </td>
                <td>
                    @Html.EditorFor(modelItem => modelItem[i].Town)
                </td>
            </tr>
        }   
    </tbody>
4

3 回答 3

2

请在此处查看我的答案:在同一视图中更新多个项目Darin Dimitrov答案。

您需要在呈现的 html 标记中具有indexin属性的项目。name你也可以看看:模型绑定到列表

于 2013-01-22T08:25:22.723 回答
1

我认为您缺少Company表单中的 ID,以便可以正确绑定模型。

你应该像这样添加它:

@using (Html.BeginForm("Edit", "Shop"))
{
<table id="example">
    <thead>
        <tr>
            <th>
                @Html.HiddenFor(model => model.ID)
                @Html.DisplayNameFor(model => model.Name)
            </th>
            ...

否则,您的其余代码似乎没问题。

于 2013-01-22T07:52:24.420 回答
0

您需要通过为每个正在编辑的行提供一个 id 来绑定表行,以便 mvc 可以将其绑定回控制器。一行表数据示例:

@for (var a = 0; a < @Model.Pets.Count; a++)
    {
    <tr>
        <td>
            @Html.CheckBoxFor(model => @Model.Pets[a].ChildSelected, new { @id= a + "childSelected" })
        </td>
    </tr>
于 2020-07-03T13:25:40.030 回答