phpを使用してデータクエリをJavaScriptに渡して編集しようとしていますが、
私の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