ajax是一个不错的东西
当dataType:'json'时提交,总是返回error
这是为什么?
经过折腾,终于发现因为要求的是json,返回的信息并不是json格式,因此总是出错
因为...我竟然在文件里引用了html文件,然后再输出...
@(滑稽)
这里再附上php生成json的坑...
$color = array('red','blue','green'); //【索引数组】
echo json_encode($color),"<br />"; //["red","blue","green"]
$animal = array('east'=>'tiger','north'=>'wolf','south'=>'monkey'); //【关联数组】
echo json_encode($animal),"<br />";//{"east":"tiger","north":"wolf","south":"monkey"}
$animal2 = array('east'=>'tiger','north'=>'wolf','duck','south'=>'monkey');//【索引关联数组】
echo json_encode($animal2),"<br />";//{"east":"tiger","north":"wolf","0":"duck","south":"monkey"}
此处内容需要评论回复后方可阅读。
json_encode(数组/对象)------------>生成json信息,
json_decode(json信息); 反编码json信息
@(泪)
终于,染念在此时解决了bug - -
2020/3/14增加:
再加一层数字伪装索引失败,因为--
$a=[1,2,3,4,5,6];
本身就是
Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
[5] => 6
)