1

我在很多列出产品的页面中都有一个 WebGrid。我有以下代码将项目添加到用户单击的数据库中:

        public bool ToCart(int userId,
            string partNumber,
            string productDescription,
            int units,
            int boxes,
            decimal unitPrice,
            decimal boxPrice,
            decimal lineTotal,
            string orderId,
            DateTime dateTime,
            bool isBoxed)
        {
            bool addedToCart = false;

            try
            {
                Cart cart = new Cart()
                {
                    UserId = userId,
                    PartNumber = partNumber,
                    Description = productDescription,
                    Units = units,
                    Boxes = boxes,
                    UnitPrice = unitPrice,
                    BoxPrice = boxPrice,
                    LineTotal = lineTotal,
                    OrderId = orderId,
                    OrderDate = dateTime,
                    IsBoxed = isBoxed
                };

                database.AddToCarts(cart);
                database.SaveChanges();

                addedToCart = true;
            }
            catch (Exception exception)
            {
                addedToCart = false;
                Console.Write(exception.Message);
            }

            return addedToCart;
        }

对该方法的调用如下所示:

ToCart(WebSecurity.CurrentUserId, PartNumber, ProductDescription, Units, Boxes, UnitPrice, BoxPrice, LineTotal, OrderId, DateTime.Now, IsBoxed)

现在我想把它变成一个 AJAX 帖子。但我不想要任何花哨的东西。我只想在将其添加到购物车时显示正常的 WaitCursor 或 BusyCursor,并<p>item added to cart</p>在将其添加到购物车时在页面顶部显示 a 。

在此处输入图像描述

当用户点击他们希望添加到购物车的商品时,我该如何实现这一点?

4

3 回答 3

1

我建议您为此使用BlockUI插件:

$('.addToCart').click(function(){
 $.ajax({
       before: function(){$('body').block()} ,//will be called before the ajax call begins
       complete: function(){$('body').unblock()}, //will be called when ajax completes, whether with error or success
       //on success, append message to top
       success: function(){
              var message = "<p>item added to cart</p>";
              $(message).appendTo('.topDiv');
    }

    });
});
于 2012-08-07T14:14:37.237 回答
0

创建一个div(在下面的示例中,我给了我的一个idloadingdiv ,其中包含您喜欢的任何内容(通常是动画 GIF - 查看http://ajaxload.info)。然后,使用 jQuery,您可以这样做:

<div id="loadingdiv"><img src="spinning-image.gif" /></div>

$("#loadingdiv").
    hide().
    ajaxStart(function() { $(this).show(); }).
    ajaxStop(function() { $(this).hide(); });

或者,如果您只想更改光标,请执行以下操作:

$(document).
    ajaxStart(function() { $(document).css("cursor", "wait"); }).
    ajaxStop(function() { $(document).css("cursor", "default"); });
于 2012-08-07T14:19:14.510 回答
0

在您的代码中添加:

using System.Web.Services;

并创建要使用 AJAX 调用的方法,将 WebMethod 属性添加到方法中:

    [WebMethod]
    public static string CallAJAX(string Iwant)
    {
        if (string.IsNullOrEmpty(Iwant)) throw new Exception("What You want ?");
        return "One " + Iwant + " for You";
    }

这就是所有 C# 部分。现在从您的页面调用它,将脚本管理器添加到页面表单:

<asp:ScriptManager ID="ScriptManager" runat="server" EnablePageMethods="true" />

添加 JavaScript 方法:

<script type="text/javascript">

    function CallAJAX() {
        var Iwant = 'ice cream';
        PageMethods.CallAJAX(Iwant, OnSucceeded, OnFailed);
        //set wait cursor
        jQuery("body").css("cursor", "progress");
    }

    function OnSucceeded(result) {
        alert(result);
        //set cursor to normal
        jQuery("body").css("cursor", "auto");
    }

    function OnFailed(error) {
        alert(error.get_message());
        //set cursor to normal
        jQuery("body").css("cursor", "auto");
    }

</script>

使用 PageMethods.CallAJAX(Iwant, OnSucceeded, OnFailed); 您调用服务器 C# 方法并附加响应事件。然后您可以将它与 ASP.NET 按钮一起使用,例如:

<asp:Button runat="server" Text="ajax call" OnClientClick="CallAJAX(); return false;" />
于 2012-08-07T14:19:22.820 回答