Rails:如何从JSON中提取值

时间:2011-01-05 21:15:43

标签: ruby-on-rails json

非常简单的问题(我是初学者)。我有来自fb的JSON响应,其中包含名称和ID:

[{"name"=>"John Kline", "id"=>"10276192"}, {"name"=>"Quinn Kumbers",   
 "id"=>"18093781"}, {"name"=>"Dan Jacobs", "id"=>"100000918716828"}] ...

如何在我的rails应用程序中提取和访问此数据,同时保留其结构?我希望能够告诉他们 - “给我第二个条目的ID”,或者“给我第275个条目” - 这些类型的东西。

回答时请不要知道。谢谢!

2 个答案:

答案 0 :(得分:8)

没有任何其他宝石:

ActiveSupport::JSON.decode(your_json)

答案 1 :(得分:6)

# HT Omar Qureshi
data = ActiveSupport::JSON.decode(your_json)

# with the id of the 2nd entry
do_something_with(data[1]['id'])

# with the 275th entry
do_something_else_with(data[274])

# loop over all the results
data.each do |datum|
  puts "#{datum['id']}: #{datum['name']}"
end