嗨,我正在尝试使用 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 操作结果。
我在这里做错了什么?