0

嗨,我正在尝试使用 ajax 创建购物车。我有点卡住了,这是我第一次使用 ajax。我想做的是创建一个 ajax.Actiolink,它将更新跨度标签的内部文本。这里是到目前为止我的代码:

 //This is the span I want to update
 <span id="UpdateCart">0</span>

 @Ajax.ActionLink("Add To Cart" ,
                             "AddToCart" ,
                             "Products", 
                             new {
                                    ProductId = @products.ElementAt(0).Value
                                 },
                             new AjaxOptions{
                                               Url = "/Product/AddToCart",
                                               InsertionMode = InsertionMode.Replace,
                                               UpdateTargetId = "UpdateCart",

                                            })
  public ActionResult AddToCart(string ProductId)
    {
        if( User.Identity.IsAuthenticated ) {

            //CartHelperClass.AddToCart(ProductId);
            return PartialView();
        } else {
            return RedirectToAction("LogIn" , "Account" , new {
                returnUrl = "Products" , subCat = Request.QueryString["subcat"]
            });
        }     
    }

 //This is my PartialView code:
 <span id="UpdateCart">(5)</span>

当我单击链接时,我希望能够获取 partialView 中的数据并更新顶部的跨度。在我的情况下,我无法判断是否调用了 AdToCart 操作结果。

我在这里做错了什么?

4

1 回答 1

1

Products在操作链接中使用,但您Product在 Url 链接中使用,可能其中一个是错误的。

于 2012-12-28T13:10:37.030 回答