整理在php后端与前端数据传输过程中一些细节。 前端页面1.html的js代码: $.ajax({ url:'1.php',//目的php文件 data:{‘age':12,},//传输的数据 type:'post',//数据传送的方式get/post dataType:'json',//数据传输的格式是json success:function(response){ //数据给后端php文件并成功返回 console.log(response);//打印返回的值 } , error:function(respons