1

我正在使用 Foursquare API,我想从这个哈希中提取“id”值

[{"id"=>"4fe89779e4b09fd3748d3c5a", "name"=>"Hitcrowd", "contact"=>{"phone"=>"8662012805", "formattedPhone"=>"(866) 201-2805", "twitter"=>"hitcrowd"}, "location"=>{"address"=>"1275 Glenlivet Drive", "crossStreet"=>"Route 100", "lat"=>40.59089895083072, "lng"=>-75.6291255071468, "postalCode"=>"18106", "city"=>"Allentown", "state"=>"Pa", "country"=>"United States", "cc"=>"US"}, "categories"=>[{"id"=>"4bf58dd8d48988d125941735", "name"=>"Tech Startup", "pluralName"=>"Tech Startups", "shortName"=>"Tech Startup", "icon"=>"https://foursquare.com/img/categories/shops/technology.png", "parents"=>["Professional & Other Places", "Offices"], "primary"=>true}], "verified"=>true, "stats"=>{"checkinsCount"=>86, "usersCount"=>4, "tipCount"=>0}, "url"=>"http://www.hitcrowd.com", "likes"=>{"count"=>0, "groups"=>[]}, "beenHere"=>{"count"=>0}, "storeId"=>""}] 

当我尝试使用 提取它时['id'],我收到此错误can't convert Symbol into Integer。如何使用 ruby​​ 提取值?另外,我如何为每次提取“id”值的多个哈希执行此操作?

请原谅我的经验不足。谢谢!

4

3 回答 3

3

它被包裹在一个数组中,这就是开头和结尾的[and的]含义。但看起来这个数组中只有一个对象,这就是你真正想要的散列。

所以假设你想要这个数组中的第一个对象:

mydata[0]['id'] # or mydata.first['id'] as Factor Mystic suggests

但通常当 API 返回一个数组时,是有原因的(它可能会返回许多结果而不仅仅是一个),并且天真地从中提取第一项可能不是您想要的。因此,在将其硬编码到您的应用程序之前,请确保您获得了您真正期望的那种数据。

于 2012-08-03T23:59:10.657 回答
2

对于多个哈希,如果你想用 id 做一些事情(运行某种程序)然后

resultsArray.each do |person|
  id = person["id"] #then do something with the id
end

如果你只想得到一个包含 id 的数组,那么

resultsArray.map{|person| person["id"]}  
# ["4fe89779e4b09fd3748d3c5a", "5df890079e4b09fd3748d3c5a"]

要从数组中获取一项,请参阅Alex Wayne的回答

于 2012-08-04T00:07:12.957 回答
0

要获取 id 数组,请尝试:resultsArray.map { |result| result["id"] }

于 2012-08-04T05:01:22.337 回答