使用JS / AJAX(Last.fm)搜索特定值的JSON对象

时间:2011-03-21 21:04:36

标签: json last.fm

我正在使用Last.fm API在JSON format中返回数据,这样可以正常工作。我正在使用user.getTopArtist() API调用。

在页面加载时,将为每个包含JSON数据相关详细信息的艺术家创建DIV对象。当用户使用DIV执行操作时,我基本上想要交换图像网址以显示更大的图像尺寸!

如何通过匹配存储的值来查找/引用JSON对象?

例如,如果我需要匹配艺术家名称'Kate Bush',然后检索“extralarge”图像网址。我该怎么做?

数据结构如下所示:

{"topartists":{
  "artist":[{
    "name":"Kate Bush",
    "playcount":"20",
    "mbid":"4b585938-f271-45e2-b19a-91c634b5e396",
    "url":"http:\/\/www.last.fm\/music\/Kate+Bush",
    "image":[
      {"#text":"http:\/\/userserve-ak.last.fm\/serve\/34\/224740.jpg","size":"small"},
      {"#text":"http:\/\/userserve-ak.last.fm\/serve\/64\/224740.jpg","size":"medium"},
      {"#text":"http:\/\/userserve-ak.last.fm\/serve\/126\/224740.jpg","size":"large"},
      {"#text":"http:\/\/userserve-ak.last.fm\/serve\/252\/224740.jpg","size":"extralarge"},
      {"#text":"http:\/\/userserve-ak.last.fm\/serve\/500\/224740\/Kate+Bush.jpg","size":"mega"}
    ]
  }
}

2 个答案:

答案 0 :(得分:0)

你用什么来解析JSON? 这是一个jQuery示例http://api.jquery.com/jQuery.parseJSON/

答案 1 :(得分:0)

如果仅针对此特定任务,那么$.each(data.topartists.artist[0].images)方法将起作用。

从更通用的解决方案开始......看看http://goessner.net/articles/JsonPath/ - 这是JSON的XPath变体