我需要使用jquery / Ajax解析存储在远程服务器中的 txt 文件。 它是一个文本文件,但是以Json格式编写。 它看起来像这样:
{
"id" : "someId",
"title" : "someTitle ",
"data" : ["a","b","c"]
}
我需要获取数据数组的内容。 可以这样做吗?
编辑: 这是我正在处理的代码。
$.ajax({
url : "someURL",
type : 'GET',
data : "json",
success : function(res) {
$.each(res, function(i, item) {
console.log(item.title);
});
},
error : function(data) {
console.log("error");
}
});