我的 php 版本是 5.2.17,当我json_decode($_GET['getItem'])
返回 null 结果时!!
function getItem(id){
$.getJSON(
"items.php",
{ getItem: '{"item": "' + id + '"}'},
function(json) {
$("#"+json.itemName).html(json.itemData);
}
);
项目.php
header('Content-Type: application/json');
$jItemArray = json_decode($_GET['getItem']);
var_dump($jItemArray);
die;