【发布时间】:2010-08-26 15:18:16
【问题描述】:
我希望能够自动将 JSON 对象解析为实例变量。例如,使用此 JSON。
require 'httparty'
json = HTTParty.get('http://api.dribbble.com/players/simplebits') #=> {"shots_count":150,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":391,"url":"http://dribbble.com/players/simplebits","draftees_count":104,"id":1,"drafted_by_player_id":null,"followers_count":2214}
我希望能够做到这一点:
json.shots_count
并让它输出:
150
我怎么可能这样做?
【问题讨论】: