WordPress:JSON.parse:JSON数据第1行第1列的意外关键字

时间:2018-11-21 12:23:07

标签: javascript json wordpress woocommerce

因此,我正在使用this post中的一些代码,以使我的订单以简码显示在Wordpress / Woocommerce中。

function shortcode_my_orders( $atts ) {
    extract( shortcode_atts( array(
        'order_count' => -1
    ), $atts ) );

    ob_start();
    wc_get_template( 'myaccount/my-orders.php', array(
        'current_user'  => get_user_by( 'id', get_current_user_id() ),
        'order_count'   => $order_count
    ) );
    return ob_get_clean();
}
add_shortcode('my_orders', 'shortcode_my_orders');

代码确实起作用,当我使用简码时,它可以正确显示信息。但是我收到JSON错误。

当我将代码在线放入JSON Parser时,它会返回

  

错误:“ SyntaxError:JSON.parse:第1行第1列的意外关键字   JSON数据”

这是我正在使用的特定代码还是其他错误?

非常感谢您的帮助。

0 个答案:

没有答案