我需要将动态值分配给 JavaScript 字典以用于 echarts,但是在将动态值分配给字典时,它显示的行为与分配 s 相比有所不同......
我需要将动态值分配给 JavaScript 字典以用于 echarts,但是当将动态值分配给字典时,它显示的行为与分配静态值不同。
分配静态值时:
response = {
"stacks": {"5G_L2": [{"Open": "43"},{"Close": "24"}],
"5G_L3": [{"Open": "12"},{"Close": "2"}]
}
};
调试窗口显示如下:
而当动态分配值时,如下所示:
var datastck=[];
var serverdata = '{{ barCdata | tojson }}';
resPbar = $.parseJSON(serverdata);
$.each(resPbar, function (i, item) {
var di={};
di[item.Team]=[{"Open": item.Open},{"Close": item.Close}];
datastck.push(di);
});
response = {
"stacks": datastck
};
调试窗口如下:
它添加了一个额外的数组层。我需要有静态分配结构来支持 echarts,请有人提供建议?
提前致谢。
假设产品 ID 8475
是购物车中必需的产品(而不是目标分组产品的一部分)。
请尝试以下操作(在下面定义您的目标分组产品 ID):
add_filter( 'woocommerce_add_to_cart_validation', 'check_variable_product_in_cart', 10, 3 );
function check_variable_product_in_cart( $passed, $product_id, $quantity ) {
$targeted_grouped_product_id = 36; // Define here the related grouped product ID
$required_product_id_in_cart = 8475; // Replace with your specific product ID (in cart)
// Check for the gouped product ID
if ( intval($_POST['add-to-cart']) === $targeted_grouped_product_id ) {
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
if ( $cart_item['product_id'] == $required_product_id_in_cart ) {
return true;
}
}
$product = wc_get_product($required_product_id_in_cart);
wc_clear_notices();
wc_add_notice( sprintf( __( 'Sorry, the product %s must be added to cart first.', 'woocommerce' ),
'<a href="'.$product->get_permalink().'"><strong>"'.$product->get_name().'"</strong></a>'
), 'error' );
return false;
}
return $passed;
}
代码放在子主题(或插件)的 functions.php 文件中。已测试并有效。