我试图解析来自AJAX调用的JSON结果,但是对服务器的限制我只能得到一个大字符串。返回了几个元素,但我需要消耗的数据都被抛入一个元素中。现在这里是棘手的事情...如果我使用firebug,响应有一个JSON标记,一切看起来像一个正确的JSON对象,但当我尝试使用警报映射或查看结果时,我注意到它们是单引号而不是双引号引号。我试过更换报价也无济于事。我现在非常难过。
the alert would print out something simular to this: [{'id':'2663','parent':'2663'},{'id':'2664','parent':'2664'},]
$.ajax({
url: myURL,
type: 'GET',
dataType: "json",
complete: function(docData) {
var docResults = docData.responseText;
alert(docResults);
$(docResults).each(function(i,val){
$.each(val,function(k,v){
console.log(k+" : "+ v);
});
});
}
});
答案 0 :(得分:2)
解决此问题的正确方法是在服务器上修复它,但是,有一种方法可以使用dataFilter回调来修复客户端。
$.ajax({
url: myURL,
type: 'GET',
dataType: "json",
dataFilter: function(response) {
// *** Note: this will have to be modified if quotes
// *** can be contained within the data. It doesn't appear as though
// *** that is the case with the data you have provided.
return response
// fix trailing comma
.replace("},]","}]")
// fix quotes
.replace(/'/g,'"'));
},
success: function (response) {
$.each(response,function(){
console.log(this);
});
}
});