为了账号安全,请及时绑定邮箱和手机立即绑定

WooCommerce get_cart() 为空

WooCommerce get_cart() 为空

PHP
达令说 2023-08-26 19:07:52
在我更新到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。但是,结果还是一样。你有什么解决办法吗?谢谢。
查看完整描述

1 回答

?
守候你守候我

TA贡献1802条经验 获得超10个赞

我解决了包括仅在前端加载的功能。


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();

}


查看完整回答
反对 回复 2023-08-26
  • 1 回答
  • 0 关注
  • 119 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信