我试图通过ajax调用将数组从js发送到php。要实现这一点,我首先使用JSON.stringify()将我的字符串转换为json,然后在另一端使用json_decode()进行解码,但它没有成功。
使用json_last_error()
我发现错误为4。
Js代码看起来像这样
var form_data = $(this).serialize();
form_data+='&extraITEMS='+JSON.stringify(extraITEMS);
var button_content = $(this).find('button[type=submit]');
form_data=form_data+'&landType='+landType;
button_content.html('Adding...'); //Loading button text
$.ajax({ //make ajax request to cart_process.php
url: "/cart/cart_process.php",
type: "POST",
dataType: "json", //expect json value from server
data: form_data
}).done(function (data) { //on Ajax success
$("#cart-info").html(data.items); //total items in cart-info element
button_content.html('Add to Cart'); //reset button text to original text
if ($(".shopping-cart-box").css("display") == "block") { //if cart box is still visible
$(".cart-box").trigger("click"); //trigger click to update the cart box.
}
})
我将我的数组附加到表单数据。
在php端
foreach($_POST as $key => $value){
$new_product[$key] = filter_var($value, FILTER_SANITIZE_STRING); //create a new product array
}
//we need to get product name and price from database.
if(isset($new_product['extraITEMS']))
{
$newPrice=0;
$extraITEMS=json_decode($new_product['extraITEMS'],true);
var_export($extraITEMS);
error_log(stripslashes($new_product['extraITEMS']));
if(is_array($extraITEMS))
{
foreach($extraITEMS as $key=>$value)
{
if($value=='cherry'||$value=='chocolate chip'||$value=='butterscotch chip'||$value=='gems')
$newPrice+=50;
else if($value=='vanilla'||$value=='pineapple'||$value=='chocolate'||$value=='dark chocolate'||$value=='strawberry'||$value=='blackcurrant'||$value=='grape'||$value=='mango'||$value=='butterscotch')
$newPrice+=100;
}
}
unset($new_product['extraITEMS']);
}
这是firebug控制台的快照。
我如何纠正这个问题?
更新
var_export()
'"[\\"vanilla\\",\\"chocolate\\"]"'
上述控制台日志在使用JSON.stringify()
第二个在数组上使用后显示。
答案 0 :(得分:0)
我终于找到了解决方案,因为这段代码无法正常工作
foreach($_POST as $key => $value){
$new_product[$key] = filter_var($value, FILTER_SANITIZE_STRING); //create a new product array
}
因为json decode在过滤器清理后的字符串上无法正常工作。