猿问

为什么ajax的dataType: "json", 变成type: 'get',不行?

http://www.imooc.com/code/13476

慕课这节的知识

$.ajax({
    url: "http://www.imooc.com/data/info_f.php",
    dataType: "json",
    //type: "get",
    success: function (data) {
    $this.attr("disabled", "true");
    $("ul").append("<li>我的名字叫:" + data.name + "</li>");
    $("ul").append("<li>男朋友对我说:" + data.say + "</li>");
   }
});

不用dataType: "json"   data.name就是undefined?

php的文件要用dataType: "json"?我本地自己的简单php文件不用dataType: "json",用type: 'get'(不是同一个案例)就能调用

啊啊啊啊123
浏览 4229回答 2
2回答

校服

dataType:数据返回类型type:是请求方式

ruibin

现在ajax发起的http请求,默认使用的就是dataType为json的格式。所以正常情况你下,你不写也没问题的。现在出现了问题,说明你的php里面设置可能出了问题,检查下。
随时随地看视频慕课网APP
我要回答