我正在尝试通过 javascript 传递使用 php 来编辑数据查询,
我的ajax请求看起来像
var totalSearchResult=10;
$.ajax({
url:"php/queryManipulation.php",
type: 'POST',
data: { totalQuery : totalSearchResult, query : '{"data":{"match_all":{}}}'},
success: function(finalList)
{
alert(finalList);
}
});
我的 php 代码看起来像
<?php
$from=$_POST["totalQuery"];
$qry=json_decode($_POST["query"]);
$qry->from=$from; }?>
我正在尝试以形式获取它,
{"data": {"match_all": {}} , "from": 10}
我得到错误Object of class stdClass could not be converted to string