如何使用 JSON 哈希访问数组?
所以我试图访问“country_code”字段,但它是 :businesses 哈希中的一个数组,所以我不知道如何访问它/使其成为哈希来访问它
{:message=>{"text"=>"OK", "code"=>0, "version"=>"1.1.1"}, :businesses=>[{"rating_img_url"=>"http://media1.ct.yelpcdn.com/static/201012164084228337/i/ico/stars/stars_4.png", "country_code"=>"US",
obj = ActiveSupport::JSON.decode(Net::HTTP.get_response(URI.parse("http://url")).body).to_options
So I am trying to access the "country_code" field, but it is an array within the :businesses hash, so I have no idea how to access it/make it a hash to access it
{:message=>{"text"=>"OK", "code"=>0, "version"=>"1.1.1"}, :businesses=>[{"rating_img_url"=>"http://media1.ct.yelpcdn.com/static/201012164084228337/i/ico/stars/stars_4.png", "country_code"=>"US",
obj = ActiveSupport::JSON.decode(Net::HTTP.get_response(URI.parse("http://url")).body).to_options
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以试试这个:
You can try this: