我正在使用 Jquery 函数,
function ajax_fun(id,val)
{
$.ajax({
type: "GET",
url: "data.php",
dataType: "json",
data: { pid: 1, cart_id: id, val: val },
success: function (returndata){
console.log(returndata);
}
});
}
称呼
ajax_fun(1,100);
数据.php
<?php
if(isset($_GET['pid']) && $_GET['pid']==1)
{
$cart_id = $_GET['cart_id'];
$val = $_GET['val']+0.06;
$arr = array('cart_id'=> $cart_id, 'total' => $val);
json_encode($arr);
}
?>
控制台返回'null'。它没有返回 cart_id 和 total。
任何人都可以帮忙吗?
.