In MVC 5 how to pass table Object data as a list to Controller View Model?

这一生的挚爱 提交于 2021-01-29 20:16:23

问题


My Controller ItemRequestViewModel is null & the issue is it didn't pass any value from view to controller but when i pass a List<string> it shows one Row Value. I just can't pass multiple object to Controllers ViewModel. i have tried by passing as a List<ItemRequestViewModel reqItem> as well but it seems no hope.

My Controller

public ActionResult ReqNotifyApprove(List<ItemRequestViewModel> reqItem)
{
   return null;
}

My View

@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>
}

I have already tried different Data binding as well but no hope.


回答1:


The problem on your approach, is the name attribute that you fixed set to "Id". The way MVC binds a collection, is by adding "[index]" as a prefix to the HTML name attribute. You can find more details about it here - https://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx/

So, if you remove this new { name = "Id" }, and use a for instead of foreach, your Razor will be something like:

@for (int i=0; i < Model.Count; i++)
{
    @Html.DisplayFor(modelItem => Model[i].Id)
    @Html.HiddenFor(modelItem => Model[i].Id)
    ....
}

And the result of the hidden input should be something like:

<input type='hidden' name="[0].Id" id="0__Id" />
<input type='hidden' name="[1].Id" id="1__Id" />
<input type='hidden' name="[2].Id" id="2__Id" />


来源:https://stackoverflow.com/questions/54235951/in-mvc-5-how-to-pass-table-object-data-as-a-list-to-controller-view-model

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!