是否可以将HTTParty请求结果作为对象使用

时间:2010-08-31 04:16:09

标签: ruby-on-rails ruby xml json httparty

我想知道是否可以将HTTParty请求结果用作对象。

目前,我使用字符串键来访问结果值:result["imageurl"]result["address"]["street"]

如果我使用的是JavaScript,我可以使用:result.imageurlresult.address.street

2 个答案:

答案 0 :(得分:11)

使用hashie gem的Mash类。

tweet = Hashie::Mash.new(
  HTTParty.get("http://api.twitter.com/1/statuses/public_timeline.json").first
)
tweet.user.screen_name

答案 1 :(得分:3)

几天前我写了this helper class

class ObjectifiedHash

    def initialize hash
        @data = hash.inject({}) do |data, (key,value)|  
            value = ObjectifiedHash.new value if value.kind_of? Hash
            data[key.to_s] = value
            data
        end
    end

    def method_missing key
        if @data.key? key.to_s
            @data[key.to_s]
        else
            nil
        end
    end

end

用法示例:

ojson = ObjectifiedHash.new(HTTParty.get('http://api.dribbble.com/players/simplebits'))
ojson.shots_counts # => 150