这些天来,我一直在努力将 WordPress 中的数据数组传递到 admin-ajax.php 进行处理。我在 WooCommerce 钩子“woocommerce_after_shop_loop_item”中添加了一个按钮,其中包含一个带有比较按钮类的 data-product_id。我的问题是,我得到了一种“多次”字符串化数组(带有转义引号,显示图片)。我的目标是将点击的产品 ID 数组传递给 admin-ajax.php,然后在那里处理该数组。我无法做到这一点,可能是因为数组的格式是字符串。如果我使用 json_decode,也会收到错误(虽然这种方式在 localhost 而不是 WordPress 环境中测试时有效)。如果我先对其进行 JSON 解码,然后再次检查数组中是否存在 ID,则不起作用。我做错了什么?
function ps_compare_products_add_enqueue(){
wp_enqueue_script('ps_script1', plugin_dir_url(__FILE__).'../script/script.js');
wp_localize_script('ps_script1','ps_object', array(
"ajax_url" => admin_url("admin-ajax.php")
));
}
function process_array_ids(){
if(isset($_POST['my_string_array']) && !empty($_POST['my_string_array'])){
$array = $_POST['my_string_array'];
//$array = json_decode($array); // if I add this I get null in my console which in not wordpress environment works
echo json_encode($array); // the only way I found to send back the array but in string format again
}
wp_die();
}
add_action('wp_enqueue_scripts','ps_compare_products_add_enqueue');
add_action('wp_ajax_my_array_ids_action', 'process_array_ids');
add_action('wp_ajax_nopriv_my_array_ids_action', 'process_array_ids');
JavaScript
document.addEventListener('DOMContentLoaded', function() {
let compareProducts = []
var compareButtons = document.querySelectorAll('.compare-button');
document.addEventListener('click', (e) => {
if(e.target.matches('.compare-button')){
var productId = e.target.dataset.product_id;
if (!compareProducts.includes(productId)) {
compareProducts.push(productId);
}
fetch_my_array(ps_object.ajax_url, 'POST', compareProducts)
}
});
})
async function fetch_my_array(url, post, myArray){
let myForm = new FormData()
let my_string_array = JSON.stringify(myArray)
myForm.append('action', 'my_array_ids_action')
myForm.append('my_string_array', my_string_array)
const options={
method: post,
body: myForm
}
const response = await fetch(url, options)
let result = await response.json()
console.log(response)
console.log(result)
// console.log(JSON.parse(result.replaceAll('\\"','')))
}