这是我的客户端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区分大小写).
原文链接:https://www.f2er.com/jquery/428085.html您可以尝试:
dataType: 'json' // not datatype
在你的ajaxSetup中;