반응형
WooCommerce get_cart() on null
업데이트하기 전에WC
4.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
반응형
'programing' 카테고리의 다른 글
SQL 내부 조인 on select 문 (0) | 2023.06.17 |
---|---|
Python 문제의 SQLalchemy에서 Synology NAS의 MariaDB 데이터베이스에 연결 (0) | 2023.06.17 |
where 절을 사용하여 firestore에서 문서를 삭제하는 방법 (0) | 2023.06.17 |
Django admin에서 동일한 모델에 대한 여러 모델 관리자/뷰 (0) | 2023.06.17 |
문자열에서 숫자 제거 (0) | 2023.06.17 |