使用WooCommerce ajax更新购物车

时间:2016-06-08 18:59:42

标签: php jquery ajax wordpress woocommerce

在我的woocommerce网站上,我更改了购物车页面,删除了按钮"更新购物车"并创建2个按钮来添加和删除产品,如我在此图片中显示的那样:

enter image description here

当我点击数量按钮时,如果按下按钮更新购物车,我想调用相同的功能。

为此,我使用的是ajax,但它没有做任何事情。

首先在我的function.php文件中,我有这个:

  function update_my_cart() {
    // here update then cart
    var_dump("execute");
  }
  add_action( 'wp_ajax_update_my_cart', 'update_my_cart' );    // If called from admin panel
  add_action( 'wp_ajax_nopriv_update_my_cart', 'update_my_cart' );  



    add_action( 'wp_enqueue_scripts', 'rct_enqueue_scripts' );

    if ( ! function_exists( 'rct_enqueue_scripts' ) ) :

    function rct_enqueue_scripts() {
    wp_enqueue_script( 'rct-js', get_template_directory_uri() . '/js/themeCoffee.js', array(), '1.0', true );
    wp_localize_script('rct-js', 'ajax_object', array('ajax_url' => admin_url( 'admin-ajax.php' )));
    }

    endif;

在我的jquery文件中,我有这个:

  updatecart = function(qty) {
    var currentVal, data, item_hash, request;
    currentVal = void 0;
    data = void 0;
    item_hash = void 0;
    currentVal = parseFloat(qty);
    request = $.ajax({
      url: 'ajax_object.ajax_url',
      method: 'POST',
      data: {
        quantity: currentVal,
        action: 'update_my_cart'
      },
      dataType: 'html'
    });
    request.done(function(msg) {
      alert('cart update ');
    });
    request.fail(function(jqXHR, textStatus) {
      alert('Request failed: ' + textStatus);
    });
  };   

我收到此错误:

Failed to load resource: the server responded with a status of 404 (Not Found)

因为我尝试加载my_website/cart/ajax_object.ajax_url

提前致谢!

2 个答案:

答案 0 :(得分:7)

你忘记了这个重要的过程:

add_action('wp_enqueue_scripts', 'add_my_ajax_scripts'); 

function add_my_ajax_scripts() {
    // Here you register your script located in a subfolder `js` of your active theme
    wp_enqueue_script( 'ajax-script', get_template_directory_uri().'/js/script.js', array('jquery'), '1.0', true );
    // Here you are going to make the bridge between php and js
    wp_localize_script( 'ajax-script', 'cart_ajax', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ) ) );
}

然后,您将在“ajaxurl”的javascript文件中检索“cart_ajax”和“url:”:

$.ajax({
  url: cart_ajax.ajaxurl,
  ...
})

您的javascript功能无效。 以下是您需要做的一些功能示例

答案 1 :(得分:0)

自2016年6月发布WooCommerce 2.6.0以来,WooCommerce购物车页面在单击“更新购物车”按钮后使用Ajax来更新购物车总数。

不再需要创建自己的Ajax调用,可以使用分配给“更新购物车”按钮的那个。

我创建了一个免费插件Ajax Cart AutoUpdate for WooCommerce,该插件可以在更改产品数量后更新购物车页面和迷你购物车,并为此过程提供一些自定义选项。

最重要的是设置更新延迟。如果用户在此延迟时间内再次更改数量,它将重置为完整持续时间。如果未实现,并且通过单击增量按钮将数量从1更改为10,它将触发9个Ajax调用,而不是1。

JQuery代码如下,我建议将其放在js文件中,并使用jQuery进行排队,然后再将其与jQuery配合使用:

var timeout;

jQuery('div.woocommerce').on('change keyup mouseup', 'input.qty', function(){ // keyup and mouseup for Firefox support
    if (timeout != undefined) clearTimeout(timeout); //cancel previously scheduled event
    if (jQuery(this).val() == '') return; //qty empty, instead of removing item from cart, do nothing
    timeout = setTimeout(function() {
        jQuery('[name="update_cart"]').trigger('click');
    }, 1000 );
});