在我更新到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();
}
- 1 回答
- 0 关注
- 119 浏览
添加回答
举报
0/150
提交
取消