当前位置:Gxlcms > PHP教程 > javascript-求助!!!关于muiajax获取不到后台数据

javascript-求助!!!关于muiajax获取不到后台数据

时间:2021-07-01 10:21:17 帮助过:29人阅读

js代码如下

php代码如下
error_reporting(E_ALL ^ E_DEPRECATED);
//header("Content-type: text/html; charset=utf-8");
header('Content-type: text/json; charset=utf-8');
//header('Content-type: application/json');
//这个header头有点疑问~所有都试了一遍还是没用
$arr = array(

'name' => '我是姓名', 
'age' => '18' 

);
$json_string = json_encode($arr);
echo ($json_string);//这里输出就是json字符串了啊~~
?>

手机端就是报错~而浏览器到是能正常获取数据是在搞不定了求解~我就是想获取php内的json数据啊~~

回复内容:

js代码如下

php代码如下
error_reporting(E_ALL ^ E_DEPRECATED);
//header("Content-type: text/html; charset=utf-8");
header('Content-type: text/json; charset=utf-8');
//header('Content-type: application/json');
//这个header头有点疑问~所有都试了一遍还是没用
$arr = array(

'name' => '我是姓名', 
'age' => '18' 

);
$json_string = json_encode($arr);
echo ($json_string);//这里输出就是json字符串了啊~~
?>

手机端就是报错~而浏览器到是能正常获取数据是在搞不定了求解~我就是想获取php内的json数据啊~~

应该是前后台格式不匹配,ajax dataType :"json" 去掉试试,获取的data 为String,在前台再转成json

人气教程排行