所以,我是MVC的新手,我有IEnumerable模型的部分视图,其中我想要编辑的字段很少。
@model IEnumerable<Allocations>
<p>
@Html.ActionLink("Create New", "AddAllocation", "Admin")
</p>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th>
@Html.DisplayNameFor(model => model.Description)
</th>
<th>
@Html.DisplayNameFor(model => model.Percentage)
</th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Description)
</td>
<td>
@Html.EditorFor(modelItem => item.Percentage)
</td>
<td>@Html.HiddenFor(modelItem => item.ID)</td>
<td>
@Html.ActionLink("Save", "EditAllocation", "Admin", null, new { id= item.ID })
</td>
</tr>
}
</table>
我希望能够将输入/更改的文本框值传递给控制器操作。我明白,如果它不是IEnumerable模型视图,我可以使用JQuery。我可能会在这里遗漏一些东西,如果有人能指引我朝着正确的方向前进,我将不胜感激。