无法将 String 转换为整数或 [] 的未定义方法 nil

发布于 2024-12-20 20:41:11 字数 399 浏览 2 评论 0原文

使用 Httparty,当我使用以下代码访问 @no 时,我得到以下响应

@parsed_reponse = > {"items" => {"@no" => "1", "@type" => "book", "@category" => "GENERAL" }}

,我得到 以下错误:“无法将字符串转换为整数”

r = @response.parsed_response["items"]["@no"]

有人可以帮忙吗?我确实得到“无法将字符串转换为整数” 或“nil:NilClass (NoMethodError) 的未定义方法‘[]’”

任何人都可以用示例解释这一点吗?

Using Httparty, I get the following response

@parsed_reponse = > {"items" => {"@no" => "1", "@type" => "book", "@category" => "GENERAL" }}

when i use the following code to access @no, I am getting the
following error: "Can't convert String into Integer"

r = @response.parsed_response["items"]["@no"]

Can anyone help on this? I do get "Can't convert String into Integer"
or "Undefined method `[]' for nil:NilClass (NoMethodError)"

Can anyone explain this with an example?

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

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

发布评论

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

评论(1

我们只是彼此的过ke 2024-12-27 20:41:11

我不是 HTTParty 专家,但以下是我迭代响应中所有数据的示例:

class Items
  include HTTParty
  default_params :output => 'xml'
  format :xml
  base_uri '<base_uri>'
end

xml =  Items.get('<xmlFile>')

xml["items"].each do |item|
  puts Integer(item['@no'])
end

I am no HTTParty expert but here is an example of what I do to iterate through all the data in a response:

class Items
  include HTTParty
  default_params :output => 'xml'
  format :xml
  base_uri '<base_uri>'
end

xml =  Items.get('<xmlFile>')

xml["items"].each do |item|
  puts Integer(item['@no'])
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文