使用 Rails 进行 Nokogiri XML 解析

发布于 2024-09-28 04:10:23 字数 1343 浏览 2 评论 0 原文

我看了很多图,但是这个似乎已经让我到达了现在的位置

控制器

  def index
      require 'nokogiri'
      doc = Nokogiri::XML(open("http://sports.yahoo.com/top/rss.xml"))

      @links = doc.xpath('//item').map do |i|
      {'title' => i.xpath('title'), 'link' => i.xpath('link'), 'description' => i.xpath('description')}
      end
  end

视图

<ul>
  <%= debug @links.each.first %>
</ul>

调试输出

{"title"=>[#]>],"description"=>[#]>], "link"=>[#]>]}

我需要的是循环链接数组并访问带有标题和链接的哈希,但我不需要知道该怎么做。

I looked at a lot of tuts but this one seems to have got me where I am

controller

  def index
      require 'nokogiri'
      doc = Nokogiri::XML(open("http://sports.yahoo.com/top/rss.xml"))

      @links = doc.xpath('//item').map do |i|
      {'title' => i.xpath('title'), 'link' => i.xpath('link'), 'description' => i.xpath('description')}
      end
  end

view

<ul>
  <%= debug @links.each.first %>
</ul>

debug out put

{"title"=>[#<Nokogiri::XML::Element:0x8199ce34 name="title" children=[#<Nokogiri::XML::Text:0x8199c6f0 "Kolb to get start for Eagles vs. Falcons (AP)">]>], "description"=>[#<Nokogiri::XML::Element:0x8199b660 name="description" children=[#<Nokogiri::XML::Text:0x8199a594 "Kevin Kolb will make his second straight start in place of the injured Michael Vick when the Philadelphia Eagles host Atlanta on Sunday. Eagles coach Andy Reid says Vick practiced Friday for the first time since sustaining a rib cartilage injury on Oct. 3. There's a chance Vick will be the backup quarterback against his former team.">]>], "link"=>[#<Nokogiri::XML::Element:0x81999f40 name="link" children=[#<Nokogiri::XML::Text:0x81999b58 "http://us.rd.yahoo.com/sports/rss/top/SIG=11npql9k5/*http%3A//sports.yahoo.com/nfl/news?slug=ap-eagles-qbs">]>]}

What I need is to loop over the links array and access the hash with the title and link, but I don't know how to do that.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遮了一弯 2024-10-05 04:10:23

如果我理解正确,您只需要从 xpath 节点获取内部文本即可。

{'title' => i.xpath('title').inner_text,
 'link' => i.xpath('link').inner_text, 
 'description' => i.xpath('description').inner_text 
}

…………

If I'm understanding correctly, you just need to get the inner text from the xpath nodes.

{'title' => i.xpath('title').inner_text,
 'link' => i.xpath('link').inner_text, 
 'description' => i.xpath('description').inner_text 
}

.......

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文