programing

WooCommerce get_cart() on null

padding 2023. 6. 17. 08:46
반응형

WooCommerce get_cart() on null

업데이트하기 전에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하지만 결과는 여전히 같습니다.해결책이 있습니까?감사해요.

프론트 엔드에만 탑재되는 기능을 포함하여 해결했습니다.

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

언급URL : https://stackoverflow.com/questions/63077103/woocommerce-get-cart-on-null

반응형