如何使用jquery从列表中删除购物车项目?

How to remove cart item from the list using jquery?

提问人:MyLegend2020 Wilson 提问时间:10/5/2023 更新时间:10/5/2023 访问量:40

问:

我有一个错误,抱怨我的函数没有在我的文档范围内定义。我调试并清除了我的缓存,不知何故我可能会错过一些东西,需要一些帮助来解决此问题。下面是我的代码,我使用 jquery 从列表中删除购物车项目。其他功能的其余部分工作正常。“ 未捕获的 ReferenceError:未定义 removeItemFromCart onclick”。

$(document).ready(function() {
  $(".add-to-cart-btn").click(function(e) {
    e.preventDefault();

      var productId = $(this).data("id");
      console.log("Product ID:", productId);
      var productName = $(this).data("product-name");
      var productImage = $(this).data("product-image");

      var quantity = parseInt($("#quantity-input").val());
      //store the product ID in the session.
      var productImage = "img/" + productId + ".jpg";

      var productPrice = parseFloat($("#product-price-" + productId).text().replace("R", ""));
      var totalPrice = productPrice * quantity;

      //store the product details in the session.
      var cartItems = JSON.parse(sessionStorage.getItem("cartItems")) || [];
      cartItems.push({
          productId: productId,
          quantity: quantity,
          productImage: productImage,
          productName: productName
      });

      sessionStorage.setItem("cartItems", JSON.stringify(cartItems));
    $.ajax({
      type: "POST",
      url: "add-to-cart.php",
      data: { productId: productId },
      success: function(response) {
        alert(response);
        updateCartBadge(); // Update the cart badge with the new count
        getCartItem(); // Refresh the cart items after adding
      },
      error: function(xhr, status, error) {
        alert("An error occurred while adding the item to the cart.");
        console.log(xhr.responseText);
      }
    });
  });

    // Function to update cart badge.
    function updateCartBadge(userId) {
        $.ajax({
            type: "GET",
            url: "getCartItemCount.php",
            data: { userId: userId},
    success: function (response) {
        console.log('Cart Item Count:', response);
        $("#cart-badge").text(response); // Update the cart badge count
    },
    error: function (xhr, status, error) {
        alert("An error occurred while retrieving the cart item count.");
        console.log(xhr.responseText);
    }
});
}

// Function to update cart items in the modal
function updateCartItems(cartData) {
    var cartItems = cartData.cartItems;
    var cartContainer = $("#cart-items");

    // Clear the previous content
    cartContainer.empty();

    // Loop through the cart items and add them to the HTML
    cartItems.forEach(function (item) {
        var totalPrice = item.totalPrice || 0; // Ensure totalPrice is a valid number or set it to 0
        var cartItemHtml = `
            <tr>
                <td>${item.product_name}</td>
                <td><img src="${item.product_image}" 
               alt="${item.product_name}" class="img-thumbnail"></td>
                <td>R${totalPrice.toFixed(2)}</td>
                <td>${item.quantity}</td>
                <td><button class="btn btn-danger btn-sm" 
                data-productId="${item.product_id}" 
                onclick="removeItemFromCart(${item.product_id})">Remove
                </button></td>

            </tr>
        `;

        // Append the cart item HTML to the container
        cartContainer.append(cartItemHtml);
    });

    // Update the total price
    var totalPriceContainer = $("#total-price");
    totalPriceContainer.text("Total Price: R" + cartData.totalPrice.toFixed(2));
}

// Use event delegation to handle click events for 
// "Remove" buttons inside the modal
$("#cartModal").on("click", ".remove-cart-item", function () {
    var productId = $(this).data("productId");
    removeItemFromCart(productId);
});

//removing item from cart.
    function removeItemFromCart(productId) {
    $.ajax({
        type: "POST",
        url: "removeCartItem.php",
        data: { productId: productId }, // Include the product ID in the data
        dataType: "json",
        success: function (response) {
            if (response.success) {
                // Item removed successfully, update the cart display
                getCartItemsForModal();
                updateCartItems();
            } else {
                alert(response.message); // Display the error message from the server
            }
        },
        error: function (xhr, status, error) {
            alert("An error occurred while removing the item from the cart.");
            console.log(xhr.responseText);
        },
    });
}

    // Call the backend to fetch cart data when the cart modal is opened
    $("#cartModal").on("show.bs.modal", function () {
        $.ajax({
            type: "GET",
            url: "getCartData.php",
            dataType: "json",
            success: function (cartData) {
                console.log("Response from the server:", cartData);
                updateCartItems(cartData);
                updateCartBadge();
            },
            error: function (xhr, status, error) {
                alert("An error occurred while fetching cart item details");
                console.log(xhr.responseText);
            }
        });
    });    
    
    // function to populate the cart modal with cart items.
    function getCartItemsForModal() {
        $.ajax({
            type: "GET",
            url: "getCartItem.php",
            dataType: "html",
            success: function (response) {
                $("#cart-items").html(response);
            },
            error: function (xhr, status, error) {
                console.log("An error occured while retrieving cart items");
                console.log(xhr.responseText);
            },

        });
    }
    updateCartItems();
    //call getCartItemsForModal function.
    $("#cart-badge-btn").click(function () {
        getCartItemsForModal();
    });

    
// function to get item from the cart.
  function getCartItem() {
    $.ajax({
      type: "GET",
      url: "getCartItem.php",
      success: function(response) {
        $("#cart-items").html(response); // Update the cart items on the page
      },
      error: function(xhr, status, error) {
        alert("An error occurred while retrieving the cart items.");
        console.log(xhr.responseText);
      }
    });
  }

  // Call updateCartBadge and getCartItem on page load
  updateCartBadge();
  getCartItem();
});
javascript html jquery 购物车

评论

0赞 imvain2 10/6/2023
为什么不去掉内联的 onclick,将 的类添加到该按钮并更改您的模态委托以将其委托给文档?这将允许模式按钮和其他按钮使用相同的委托单击处理程序.remove-cart-item$(document).on("click", ".remove-cart-item", function () {

答:

0赞 nesly 10/5/2023 #1

若要解决此问题,必须确保在引用 removeItemFromCart 函数之前在 HTML 中定义该函数。将函数定义移动到代码顶部将解决该问题

评论

0赞 MyLegend2020 Wilson 10/5/2023
我在函数本身上使用 html,请参阅 var cartHtml = .....并且它在里面定义,也尝试使用委托,仍然没有运气,清除缓存并重试。