Hpricot 和 Rails

发布于 2024-09-15 12:01:25 字数 689 浏览 7 评论 0原文

我对 Ruby 和 Rails 完全陌生......事实上,我今天在 Rails 中创建了我的第一个应用程序,它发出 HTTP 请求来拉回 XML 文档,然后将其输出到屏幕......上手很简单......

嗯,我我现在需要解析 XML 字符串,但不知道如何使用 Hpricot 准确地做到这一点。

这是到目前为止我的代码

控制器

require 'hpricot'
class HelloController < ApplicationController
  def index
    h = Hello.new
    @tickets = Hpricot(h.ticket_list)
  end
end

模型

def ticket_list
    url = URI.parse("http://example.com/test.xml")

    req = Net::HTTP::Get.new(url.path)
    req.basic_auth @@uname, @@pwd

    res = Net::HTTP.new(url.host, url.port).start do |http|
      http.request(req)
    end

    return res.body
  end

我如何将信息传递到我的视图中?

I am completely new to Ruby and Rails... in fact I created my first application in Rails today that makes an HTTP request to pull back an XML document and then outputs it to the screen.. something simple to get started..

Well I am needing to now parse the XML string but am lost on how to do that exactly with Hpricot.

Here is my code so far

Controller

require 'hpricot'
class HelloController < ApplicationController
  def index
    h = Hello.new
    @tickets = Hpricot(h.ticket_list)
  end
end

Model

def ticket_list
    url = URI.parse("http://example.com/test.xml")

    req = Net::HTTP::Get.new(url.path)
    req.basic_auth @@uname, @@pwd

    res = Net::HTTP.new(url.host, url.port).start do |http|
      http.request(req)
    end

    return res.body
  end

How would I pass information into my view?

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

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

发布评论

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

评论(1

请止步禁区 2024-09-22 12:01:25

我刚刚想通了!

控制器

@tickets = Hpricot(h.ticket_list)
@desc = (@tickets/:ticket)

视图

<% @desc.each do |x| %>
    <p><%=(x/:description)%></p>
<% end %>

I just figured it out!

Controller

@tickets = Hpricot(h.ticket_list)
@desc = (@tickets/:ticket)

View

<% @desc.each do |x| %>
    <p><%=(x/:description)%></p>
<% end %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文