0

我想根据这个文件创建一个包含 20 首歌曲的艺术家和曲目名称的多维数组。

http://ws.audioscrobbler.com/2.0/user/bbc6music/weeklytrackchart.xml

因此,我可以创建一个 Spotify 应用程序,生成该列表中前 20 首歌曲的播放列表。

看起来相当直截了当,但我无法接受它。

我会很感激任何帮助,干杯。

4

1 回答 1

3

您可以使用 jQuery 获取数据并通过它进行解析

$.get("http://ws.audioscrobbler.com/2.0/user/bbc6music/weeklytrackchart.xml",
function(xmlData){
     var $page = $(xmlData);
     //you can now use all the jQuery to conquer the world
     $page.find("track:lt(20)").each(function(){
           var $data = $(this);
           var artistName = $data.find("artist").text();
           //mischief goes here
      });
      //tap the map and say "mischief managed"
 }
);

http://jquery.com/

于 2013-02-07T17:04:51.283 回答