前台
var arr = [
{
sc_name : sc_name,
sc_zjs : sc_zjs,
sc_cgs : sc_cgs,
sc_labos : sc_labos,
sc_field : sc_field,
sc_info : sc_info,
sc_cg : sc_cg,
sc_expert : sc_expert,
sc_institute : sc_institute
}
];
var JsonData = JSON.stringify(arr);
console.log(JsonData);
// console.log(arr);
$.ajax({
type: 'POST',
url: "admin/school/add",
contentType :"application/json", // 很重要
data: JsonData,
dataType: 'json',
success: function(data){
if (data.status == 1) {
alert("编辑成功");
// window.location.href="admin_index"; // 跳转到后台主页
} else {
// alert(222);
alert("编辑失败");
}
}
});
php 后台
接收原始数据流
$data = file_get_contents("php://input");
$data = json_decode($data);