我在使用 $.getJSON() 发送和接收 JSON 对象时遇到问题
在index.html中,我发送一个 get JSON 请求来发送一个对象并检索数据
var newtable = {
"query":"create",
"num":"2"
};
var crypt=JSON.stringify(newtable);
$.getJSON('php/table_manager.php',crypt,function(data){alert(data);});
在php/table_manager.php中,我编写了一个脚本来简单地返回 JSON 对象:
$data = json_decode($_POST);
$return = json_encode($data);
echo $return;
但是,$return
为空。请帮我解决这个问题。