日期:2014-05-17 浏览次数:20458 次
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);
}
});
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 ;