I have a class including ActiveModel that needs to have some "associations", like this:

a      = ActiveModelClass.new
a.user = User.find(1)

I'm just using an attr_accessor for this:

attr_accessor :user

### Elsewhere ###

a.user.name # => "Kevin"

So far so good. But now I want to serialize it into JSON:

json = a.to_json
b    = ActiveModelClass.new(ActiveSupport::JSON.decode(json))

But now, user is a hash:

b.user.class # => Hash

How can I cleanly restore these "associations" as objects of the classes they originally were?

link|improve this question

feedback

1 Answer

I'm a little confused: I have a feeling you've abstracted your example to the point where it's just hard to understand. Do you have something like this?

b.user 
=> {:name => "Kevin", :email => "kev@foo.foo"}

?

if so, you can make a user object out of this hash just by passing it to the .new or .create method:

user = User.create(b.user) 

You can then do what you want with this user object, including setting b.user equal to it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.