将ruby哈希转换为json对象

时间:2015-10-14 03:24:59

标签: ruby-on-rails ruby json hash

所以我正在迭代一组数据并从中构建哈希:

clean_response = Array.new
        response.each_with_index do |h, idx|
        clean_response <<
        {
                    :lat => h["location"]["latitude"],
                    :lg => h["location"]["longitude"],
                    :place => h["location"]["name"],
                    #This grabs the entire hash at "location" because we are wanting all of that data
                    :profile_picture => h["user"]["profile_picture"],
                    :hash_tags => h["tags"],
                    :username => h["user"]["username"],
                    :fullname => h["user"]["full_name"],
                    :created_time => (Time.at(h["created_time"].to_i)).to_s,
                    :image => h["images"]["low_resolution"]["url"] # we can replace this with whichever resolution.
        }
        end

返回一个像这样的哈希数组:

[{:lat=>40.7486382,
  :lg=>-73.9487686,
  :place=>"The Cliffs at LIC",
  :profile_picture=>"http://scontent.cdninstagram.com/hphotos-xaf1/t51.2885-19/s150x150/12104940_1653775014895036_286845624_a.jpg",
  :hash_tags=>["bouldering"],
  :username=>"denim_climber",
  :fullname=>"DenimClimber",
  :created_time=>2015-10-13 22:58:09 -0400,
  :image=>"https://scontent.cdninstagram.com/hphotos-xaf1/t51.2885-15/s320x320/e35/11856571_1062082890510188_611068928_n.jpg"},
 {:lat=>40.7459602,
  :lg=>-73.9574966,
  :place=>"SHI",
  :profile_picture=>"http://scontent.cdninstagram.com/hphotos-xaf1/t51.2885-19/11348212_1453525204954535_631200718_a.jpg",
  :hash_tags=>["cousins", "suchafunmoment", "johnlennonstyle"],
  :username=>"xiomirb",
  :fullname=>"Xiomi",
  :created_time=>2015-10-13 22:57:21 -0400,
  :image=>"https://scontent.cdninstagram.com/hphotos-xaf1/t51.2885-15/s320x320/e35/11375290_1688934151392424_2009781937_n.jpg"}]

我希望将此数据转换为json,然后将其提供给特定视图。 我该怎么转换呢?我尝试了.to_json方法,但由于我的UI不与数据绑定,因此它不会返回格式正确的方法。

2 个答案:

答案 0 :(得分:4)

您可以使用to_json

将Ruby哈希转换为JSON
require 'json'

your_hash.to_json # gives you a JSON object

但是,在您的情况下,数据是一个哈希数组,但不是哈希值。因此,您的to_json无效。

我不太确定你想怎么做,但是有一种可能性就是遍历哈希数组,获取每个哈希并使用to_json调用将其转换为JSON对象(如上所示)和构建一个新的JSON对象数组。这样,您就可以从哈希数组中构建一个JSON对象数组。

array_of_json = []
# loop through the array of hashes
clean_response.each do |hash|
  array_of_json << hash.to_json
end
array_of_json # array of JSON objects

答案 1 :(得分:0)

如果通过&#34;将其提供给特定视图&#34;你的意思是将它传递给.haml或.erb模板,你可以按原样传递哈希数组。 haml和erb都允许你遍历数组,甚至是你想要的哈希值。

如果您的意思是想要将json字符串传递给浏览器,那么#to_json应该可以正常工作。当你想要优化发送的内容时,其他选项是jbuilder或oat,但to_json应该&#34;提供&#34;你好!