php 怎麼接收前端傳來的json資料

來源:互聯網
上載者:User
php 如何接收前端傳來的json資料
前端用JQ 產生一個有欄位名和值格式的索引值對 的JSON 格式的字串 轉碼後 提交給背景PHP 處理
代碼如下

json_data+="\"emp_id\":\""+emp_id+"\",\"action_type\":\""+action_type+"\"})"
//$("#emp_no_id").val(json_data);
var json_data1=eval(json_data);
//var json_data1=json_data;

//$.each(json_data1,function(item,value){
// alert(item+value);
//});
$.ajax({
type: "post",//使用post方法訪問後台
dataType: "text",//返回json格式的資料
url: "updata_emp.php", //要訪問的後台地址
data:json_data1,
ontentType:'utf8',
async:false,
success: function(msg){//msg為返回的資料,在這裡做資料繫結
var arr=msg;
alert(msg);
}
});


後台使用PHP 接受

require '.\require\db_set.php';
if (!empty($GLOBALS['HTTP_RAW_POST_DATA']))
{
$command = isset($GLOBALS['HTTP_RAW_POST_DATA']) ? $GLOBALS['HTTP_RAW_POST_DATA'] : file_get_contents("php://input");
$j =json_decode( $command,true);//true,轉化成數組
}

echo $j ;


現在的情況是 接收到的內容 是一個字串, 無法用json_decode 轉成數組



應該如何處理 PHP JSON 前端

分享到:


------解決方案--------------------
你沒有注意到你的彈框中就是一個 url 參數串嗎?
既然 ajax 有 type: "post"
那麼你就用 $_POST 就是了
------解決方案--------------------
你的json_data可以寫成:json_data="emp_id="+emp_id+"&action_type="+action_type;這樣的形式,然後在後端用$_POST['emp_id']這樣的方法來擷取傳遞的值
------解決方案--------------------
你當 jq 是弱智啊


引用:
你的json_data可以寫成:json_data="emp_id="+emp_id+"&action_type="+action_type;這樣的形式,然後在後端用$_POST['emp_id']這樣的方法來擷取傳遞的值
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.