MVC3如何在购物车中实现多个“添加到购物车”功能?

时间:2011-11-01 05:32:17

标签: asp.net-mvc asp.net-mvc-3 shopping-cart

我按照音乐商店mvc示例创建了我自己的简单购物车。问题是,我的商店一次只允许添加一个项目。但现在我需要一种方法一次将多个项目添加到购物车并指定数量。

我正在考虑这样做:Model Binding to a List,但我的物料模型没有数量属性来保存所需的购物车数量。

public int ItemID { get; set; }

public string Barcode { get; set; }

public string Name { get; set; }

public string Description { get; set; }

public decimal Price { get; set; }

和我的viewmodel:

public class ItemViewModel
{
    public int ItemID { get; set; }

    public string Barcode { get; set; }

    public string Name { get; set; }

    public string Description { get; set; }

    public decimal Price { get; set; }

    public int Quantity { get; set; }
}

public class ItemToCartViewModel
{
    public List<ItemViewModel> itemToCart { get; set; }
}

似乎没有在我的帖子操作中正确发布(null或没有传递值):

[HttpPost]
public ActionResult addtocart(ICollection<ItemViewModel> items)
{ ... }

有什么想法吗?

更新:

@model IList<MyTGP.ViewModels.ItemViewModel>
@{
    ViewBag.Title = "Search for Items";
    int count = 0;
}
<h2>
    Search for Items</h2>
@Html.Partial("_SearchItemsPartial")

@using (Html.BeginForm("addtocart","Cart"))
{ 
if (String.IsNullOrEmpty(ViewBag.NoRecord)) {
<table>
    <tr>
        <th>
            Barcode
        </th>
        <th>
            Name
        </th>
        <th>
            Description
        </th>
        <th>
            Price
        </th>
        <th>
            Quantity
        </th>
    </tr>
    @foreach (var item in Model)
    {
        <tr>
            <td>
                @Html.DisplayFor(modelItem => item.Barcode)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Name)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Description)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Price)
            </td>
            <td>
                @Html.EditorFor(modelItem => item.Quantity)
            </td>
        </tr>
        count++;
    }
</table>
} else { @ViewBag.NoRecord }
<p>
    <input type="submit" value="add items to cart" />
</p>
}

1 个答案:

答案 0 :(得分:1)

我无法评论,所以我在这里发帖。你能告诉我们这个观点吗? HTML很重要。

更新: 尝试这样(在foreach循环中)

@Html.Hidden("["+count+"].ItemID",item.ItemID)
@Html.Hidden("["+count+"].Barcode",item.Barcode)
@Html.Hidden("["+count+"].Name",item.Name)
@Html.Hidden("["+count+"].Description",item.Description)
@Html.Hidden("["+count+"].Price",item.Price)

然后显示数量@Html.TextBox("["+count+"].Quantity",item.Quantity)