jQuery似乎不会自动解析JSON

前端之家收集整理的这篇文章主要介绍了jQuery似乎不会自动解析JSON前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这是我的客户端jQuery代码

$.ajaxSetup ({
   contentType: "application/json",datatype: 'json'
});

$.ajax({
   type: "POST",url: "http://localhost:1234/path",data: JSON.stringify(myData),success: function(aString){
      alert(aString);
   },error: function(errorData){
      alert(errorData);
   }
});

这是服务器发出的数据:

200
Content-Type: application/json

"aStringsData"

在警报中,显示“aStringData”的引号.但是,由于我希望从数据类型:’json’发生自动JSON.parse,我希望引用被删除.我错了吗?

最佳答案
该参数实际上是dataType,而不是数据类型(JavaScript区分大小写).

您可以尝试:

dataType: 'json' // not datatype

在你的ajaxSetup中;

原文链接:https://www.f2er.com/jquery/428085.html

猜你在找的jQuery相关文章