第二个参数未传递给控制器​​(ViewModel)

时间:2019-06-12 11:05:15

标签: c# asp.net-mvc asp.net-mvc-routing form-post

我对编程还不是很陌生,但是我在下面遇到了这个问题。

我正在尝试将2个值“ Id”和“ quantity”传递给控制器​​。

“ id”正按预期命中控制器。但我不能对“数量”说同样的话。

基本上,数量是/应该是用户在其中添加数量的文本框。数量结果命中控制器为NULL或0(零)。

这将用于我要设置的购物车。我在哪里获得产品的ID和数量。

我尝试使用剃刀,但是用户输入的数量数据没有传递给控制器​​。我确定我之前已经完成了2个这样的参数传递,并且我也看到了一些类似的示例。但是令我沮丧的是,我现在不能做一件简单的事情。 :(


public class OrderViewModel{
        public IEnumerable<Product> Product { get; set; }
        public IEnumerable<Supplier> Supplier { get; set; }

        public Product product { get; set; }
        public Supplier supplier { get; set; }      

        public int Quantity { get; set; }}}```

Controller

public ActionResult AddToCart(int id, int? qty)
{
}

My view

@using (Html.BeginForm("AddToCart", "Order", FormMethod.Get))
{
    <table class="table table-hover table-striped table-bordered">
        <tr>
            <th> @Html.DisplayNameFor(model => model.product.ProductCode) </th>
            <th> @Html.DisplayNameFor(model => model.product.Description) </th>
            <th> @Html.DisplayNameFor(model => model.product.Image)       </th>
            <th> @Html.DisplayNameFor(model => model.product.Price)       </th>
            <th> Quantity for purchase                                    </th>
            <th> @Html.DisplayNameFor(model => model.supplier.CompanyName)</th>
            <th></th>
        </tr>

        @foreach (var item in Model)
        {
            <tr>
                <td>  @Html.DisplayFor(modelItem => item.product.ProductCode)               </td>
                <td>  @Html.DisplayFor(modelItem => item.product.Description)               </td>
                <td>  @Html.DisplayFor(modelItem => item.product.Image)                     </td>
                <td>  @Html.DisplayFor(modelItem => item.product.Price)                     </td>
                <td>  <input type="number" value="@item.Quantity" />  </td>
                <td>  @Html.DisplayFor(modelItem => item.supplier.CompanyName)              </td>
                <td>
                    @Html.ActionLink("Add", "AddToCart", new { id = item.product.ProductId, qty = item.Quantity }, new { @class = "btn btn-success"})                 
                </td>
            </tr>
        }

    </table>
}

My expectation is that the "quantity" entered by the user, will hit the action on the controller.

**I fixed that by adding that following**

<input type="hidden" name="id" value="@item.product.ProductId" />
<input type="submit" value="Add">

removed the following

 @Html.ActionLink("Add", "AddToCart", new { id = item.product.ProductId, qty = item.Quantity }, new { @class = "btn btn-success"}) 

2 个答案:

答案 0 :(得分:1)

如果您希望它在表单发布后起作用:

<input type="number" value="@item.Quantity" />

更改为:

<input name="qty" type="number" value="@item.Quantity" />

请在您的Form标记( / Order / AddToCart )和ActionLink / AddToCart / Add )。它们是不同的,可能不会是同一控制器的动作。

仅供参考-您应该在其中没有一个ActionLink按钮,而不是submit来发布表单:

<input type="submit" value="Add">

您已经在表格中准备好了路线和数据。 ActionLink会导航到该操作而不发布表单。

答案 1 :(得分:0)

您缺少 name 属性。应该是这样的。

<input type="number" name="qty" value="@item.Quantity" />

注意:- name 属性的值应与控制器中操作的参数名称匹配。