在我更新到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。但是,结果还是一样。你有什么解决办法吗?谢谢。
守候你守候我