我的控制器ItemRequestViewModel
为空,问题是它没有从视图向控制器传递任何值,但是当我传递List<string>
时,它显示一个行值。我只是不能将多个对象传递给Controllers ViewModel。我也尝试过通过List<ItemRequestViewModel reqItem>
传递,但似乎没有希望。
我的控制器
public ActionResult ReqNotifyApprove(List<ItemRequestViewModel> reqItem)
{
return null;
}
我的观点
@model IEnumerable<Management_System.ViewModels.ItemRequestViewModel>
@using (Html.BeginForm("ReqNotifyApprove",
"RequestedItems",
FormMethod.Post,
new { id = "ReqItemApproveForm" }))
{
<table class="table table-bordered results">
<thead>
<tr>
<th>ID</th>
<th>ITEM ID</th>
<th>DESCRIPTION</th>
<th>UOM</th>
<th>AVL QTY</th>
<th>REQ QTY</th>
<th>AUTH QTY</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<th>
@Html.DisplayFor(modelItem => item.Id)
@Html.HiddenFor(modelItem => item.Id, new { name = "Id" })
</th>
<th>
@Html.DisplayFor(modelItem => item.PDT_CODE)
</th>
<td>
@Html.DisplayFor(modelItem => item.PDT_NAME)
</td>
<td>
@Html.DisplayFor(modelItem => item.UOM_SNAME)
</td>
<td>
@Html.DisplayFor(modelItem => item.AvailableQty)
</td>
<td>
@Html.DisplayFor(modelItem => item.ISS_QTY)
</td>
<td>
<input type="number" id="ApprovedQuantity" name="ApprovedQuantity" class="form-control" min="0" style="width: 80px;">
</td>
</tr>
}
</tbody>
</table>
<div>
<input class="btn btn-lg btn-success" type="submit" value="Approve" />
</div>
}
我也已经尝试了不同的数据绑定,但是没有希望。
答案 0 :(得分:0)
您的方法遇到的问题是您将名称属性固定设置为“ Id”。 MVC绑定集合的方式是在HTML名称属性中添加“ [index]”作为前缀。您可以在这里找到有关它的更多详细信息-https://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx/
因此,如果您删除此src/androidTest
,并使用new { name = "Id" }
而不是for
,
您的剃刀将类似于:
foreach
隐藏输入的结果应类似于:
@for (int i=0; i < Model.Count; i++)
{
@Html.DisplayFor(modelItem => Model[i].Id)
@Html.HiddenFor(modelItem => Model[i].Id)
....
}