WooCommerce get_cart() 为空

在我更新到WC4.3.1 之前,我有这段代码并且运行良好


 add_action( 'rest_api_init', function () {

                    register_rest_route( 'px-module-woocommerce', '/px/cart', array(

                            'methods' => 'POST',

                            'callback' => array($this,'ajax_add_to_cart'),

                    ));

});

public function ajax_add_to_cart() {

       $items = WC()->cart->get_cart();

}

现在,WC()->cart->get_cart()依然回归


Call to a member function get_cart() on null

我也尝试过全局值$woocommerce。但是,结果还是一样。你有什么解决办法吗?谢谢。


达令说
浏览 120回答 1
1回答

守候你守候我

我解决了包括仅在前端加载的功能。public function ajax_add_to_cart() {            include_once WC_ABSPATH . 'includes/wc-cart-functions.php';            include_once WC_ABSPATH . 'includes/class-wc-cart.php';            if ( is_null( WC()->cart ) ) {                wc_load_cart();            }           $items = WC()->cart->get_cart();}
打开App,查看更多内容
随时随地看视频慕课网APP