如何使用timber.RightDrawer.open();在自定义添加到购物车成功打开抽屉?

时间:2017-03-26 16:30:55

标签: jquery ajax shopify timber

我正在使用自定义ajax代码添加到购物车并且其工作正常,问题是我需要通过使用timber.RightDrawer.open();打开成功功能上的购物车抽屉。 现在我正在使用" js-drawer-open-right"在点击添加到购物车按钮的同时在表单中打开抽屉。我需要在添加到购物车成功时打开抽屉。

我的Ajax代码是:

                function addItem(button) {
                var postData = $(button).closest('.add-to-cart').serialize();
                  $.ajax({
                    type: 'POST',
                    url: '/cart/add.js',
                    dataType: 'json',
                    data: postData,
                    success: addToCartOk,
                    error: addToCartFail
                  });
                }
                function addToCartOk(product) {
                //Want to open drawer here on success
                  timber.RightDrawer.open();
                }
                function addToCartFail(obj, status) {
                }

我的表格是:                   

您可以在此处查看添加到购物车https://soft-theme.myshopify.com/collections/all

2 个答案:

答案 0 :(得分:1)

与timber.RightDrawer.open();

相比,我找到了不同且非常简单的解决方案。

我点击了" js-drawer-open-right"使用jQuery成功函数并从我之前放置的表单中删除该类。

现在成功的功能是:

         function addToCartOk(product) {
            //drawer open here by click on that class on success
              jQuery('.js-drawer-open-right').click();
            }

它工作得很好。

答案 1 :(得分:-1)

@barjinder解决方案,但更清洁:

$(document).on("click", ".add-to-cart-button", function(event) {
    event.preventDefault();
    var form = $(this).closest('form');
    jQuery.ajax({
        type: 'POST',
        url: '/cart/add.js',
        data: form.serialize(),
        dataType: 'json',
        success: function(cart) {
            jQuery('.js-drawer-open-right').click();
        },
        error: function(XMLHttpRequest, textStatus) {
            alert("An error occurred: can't reach server");
        },
    });
});

您可以使用以下表格

<form action="/cart/add" method="POST">
    <input type="hidden" name="quantity" value="1">
    <input type="hidden" name="id" value="{{ product.variants.first.id }}">
    <button type="submit" class="add-to-cart-button">
        Add to cart
    </button>
</form>