遇到json_decode解析不了的前端代码:
if ($("#json").val()!='' && $("#uri").val()!=''){ var dataJson=JSON.parse($("#json").val()); $.ajax({ url: "<!--{$base_path}-->manage/tools/getFoxJsonData/", type: "post", data:dataJson, contentType: "application/json", timeout: 5000, //超时时间:30秒 async: false,//false-同步(当这个ajax执行完后才会继续执行其他代码);异步-与其他代码互不影响,一起运行。 dataType: "json", success: function (data) { // console.log(data); $("#red").val(data.res); }, error: function (data) { } }); }
正确的前端代码:
$.ajax({ url: "<!--{$base_path}-->manage/tools/getFoxJsonData/", type: "post", data:JSON.stringify([dataJson]), timeout: 5000, //超时时间:30秒 async: false,//false-同步(当这个ajax执行完后才会继续执行其他代码);异步-与其他代码互不影响,一起运行。 dataType: "json", success: function (data) { // console.log(data); $("#red").val(data.res); }, error: function (data) { } });
后端代码:
$content = file_get_contents('php://input'); var_dump(json_decode($content,true)); exit;
------------正 文 已 结 束, 感 谢 您 的 阅 读 (折雨的天空)--------------------
转载请注明本文标题和链接:《PHP的json_encode报错,解析不了jquery通过ajax提交的json数据的解决办法》
发表评论