MVC5将Model项从View传递给Controller

时间:2016-05-16 14:22:21

标签: c# .net asp.net-mvc asp.net-mvc-5

我正在使用.Net MVC5,我正在尝试创建一个带有编辑链接(或按钮)的索引视图,它将POST(因此我不能使用ActionLink)整个模型项实体从实体列表中显示风景。我该怎么做?

我的代码(到目前为止)位于

之下
@model IEnumerable<Projname.Models.MyEntity>
<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
</head>
<body>
    <p>
        @Html.ActionLink("Create New", "Create")
    </p>
    <table class="table">
        <tr>

            <th>
                @Html.DisplayNameFor(model => model.Name)
            </th>
            <th>Hello there</th>
            <th>life is good</th>
            </tr>

    @foreach (var item in Model) {
        <tr>

            <td>
                @Html.DisplayFor(modelItem => item.Name)
            </td>
            <td>

                @using (Html.BeginForm("Edit", "Edit", FormMethod.Post))
                {
                    @Html.Hidden(mytem => item);

            <input type="submit" value="Edit" class="btn btn-default" />
                }
            </td>
            <td>                
                @Html.ActionLink("Details", "Details", new { id = item.PrimeKey }) |
                @Html.ActionLink("Delete", "Delete", new { id = item.PrimeKey })
            </td>
            </tr>
    }

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

我假设有一种更好的方法,而不是为实体的每个属性创建一个隐藏字段。

2 个答案:

答案 0 :(得分:0)

您需要将要编辑或更改的项目放入表单

<form class="form-horizontal" action="GetItemsFromView" method="post">
    <input type="text" name="EditedModelItem">
</form>

之后,您可以通过调用控制器中的任何已编辑项目     string hold = Request.Form [“EditedModelItem”]; 在GetItemsFromView方法中。

答案 1 :(得分:0)

包装所有内容:

@using (Html.BeginForm("Edit", "Edit", FormMethod.Post))
{                
}

然后:

 public ActionResult Edit(Model model)
 {
      if (ModelState.IsValid)
      {
      }
 }

或者:

public ActionResult Edit(FormCollection formCollection)
{
}