Activeresource, updating and merging

半城伤御伤魂 提交于 2019-12-24 19:07:04

问题


I've run into a problem I'm not able to handle right now with an ActiveResource object that looks something like this:

#<Settings:0x000000085fff48
 @attributes=
  {"account_id"=>1,
   "created_at"=>"2012-01-10T14:54:36Z",
   "id"=>1,
   "settings_hash"=>
    #<Settings::SettingsHash:0x000000085ff250
     @attributes=
      {"email_notices"=>
        #<Settings::SettingsHash::EmailNotices:0x0000000860c860
         @attributes=
          {"none"=>
            ["none", "none"]},
         @persisted=false,
         @prefix_options={}>,
       "permissions"=>
        #<Settings::SettingsHash::Permissions:0x0000000860c1d0
         @attributes=
          {"default"=> [["all"], ["all"] ]},
         @persisted=false,
         @prefix_options={}>},
     @persisted=false,
     @prefix_options={}>,
   "field_key"=>"BRp7Box33sg",
   "fieldone"=>1,
   "updated_at"=>"2012-01-10T14:54:36Z"},
 @persisted=true,
 @prefix_options={}>

Which us where it comes from an ActiveRecord model with field that is serialized as a hash. I feel as if I'm doing to much work to unpack that hash AND I can't seem to add to it and update the model. I mean I can add to it while toying with it but it takes something like:

thisobject.settings_hash['permissions'].attributes.merge({"derp"=>[['dsfasdf'],['asdfasdfadsf']]})

which I'm having difficulty gettng back into the object and then which I want to update back where it came from.

So, I'm doing something I don't quite have a grasp of right now, perhaps in an awkward way. Suggestions?

I want to add a hash to hash field within an ActiveResource object to update a ActiveRecord object instance elsewhere, but can't quite at the moment.

来源:https://stackoverflow.com/questions/8807285/activeresource-updating-and-merging

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!