在 Ruby 中使用 Nokogiri 错误地解析 xml



我正在使用Nokogiri来解析来自 last.fm 的XML响应。我目前正在返回我想要的信息,但不是我想要的格式。我得到的是一个Nokogiri::XML文档。我想要的是每<track>一行,其中包括歌曲的标题、艺术家和 URL。下面是 XML 的示例:

<lfm status="ok">
  <toptracks metro="Beijing" page="1" perPage="50" totalPages="10" total="500">
    <track rank="1">
      <name>Rolling in the Deep</name>
      <duration>226</duration>
      <listeners>33</listeners>
      <mbid>092a88bc-af0b-4ddd-a3a1-17ad37abfccb</mbid>
      <url>
        http://www.last.fm/music/Adele/_/Rolling+in+the+Deep
      </url>
      <streamable fulltrack="0">1</streamable>
      <artist>
        <name>Adele</name>
        <mbid>1de93a63-3a9f-443a-ba8a-a43b5fe0121e</mbid>
        <url>http://www.last.fm/music/Adele</url>
      </artist>
      <image size="small">http://userserve-ak.last.fm/serve/34s/55125087.png</image>
      <image size="medium">http://userserve-ak.last.fm/serve/64s/55125087.png</image>
      <image size="large">http://userserve-ak.last.fm/serve/126/55125087.png</image>
      <image size="extralarge">
        http://userserve-ak.last.fm/serve/300x300/55125087.png
      </image>
    </track>
  </toptracks>
</lfm>

这是我使用的代码:

doc = Nokogiri::HTML(open(url))
doc.xpath("//toptracks").each do |track|
  song_title = track.xpath("*/name").text
  song_lastfm_url = track.xpath("*/url").text
  song_artist = track.xpath("*/artist/name").text
  puts "#{song_title} - #{song_lastfm_url} - #{song_artist}"
end

正如我所提到的,我得到了所有的歌曲标题,然后是所有的歌曲网址,然后是所有歌曲艺术家作为一个XML文档。

你没有像你想象的那样遍历曲目。像这样尝试:

doc.xpath('//toptracks/track').each do |track|
  song_title, song_lastfm_url, song_artist = track.xpath('./name','./url','./artist/name').map{|x| x.text.strip}
end

相关内容

  • 没有找到相关文章

最新更新