我收到一个 JSON 响应
{
"title": "Some title",
"link": "http://google.com",
"desc": "Some description",
"items": [{"title":"some title"}]
}
我使用 $ajax 来获得响应
$.ajax({
url : url,
type: 'post',
dataType:'jsonp',
success : function(data) {
console.log(json)
}
});
};
它给了我一个“无效标签”错误。由于响应来自不同的服务器,我应该使用 JSONP 吗?我用谷歌搜索了它,许多人建议使用 ParseJSON。但是如何解析它,因为 console.log 没有触发。