I'm using the to_json method on my model object that I created by doing something like:

user = User.find(1)

When I do user.to_json, a lot of attributes are missing, including user.id from the encoded JSON string. It appears that all of the attributes that I've added as attr_accessible from the User model are there, but none of the others. Perhaps that is what to_json is doing, but I think that adding id to attr_accessible is a no go.

What is the right way of solving this problem?

UPDATE

This looks to be a specific issue with Devise. If I comment out the following from user.rb, everything works as expected:

devise :rememberable, :trackable, :token_authenticatable, :omniauthable

link|improve this question

80% accept rate
This is really weird... what if you type explicitly user.to_json(:except => :created_at). – apneadiving Jul 28 '11 at 22:32
did you try to work from console? what about the object before to_json? does it have all the attributes set? – notme Jul 28 '11 at 22:38
the object does contain id before the to_json (verified in console). I tried (:except => :created_at) and that didn't do it. I wonder if Devise is doing something odd to my object. – randombits Jul 28 '11 at 23:38
feedback

2 Answers

up vote 4 down vote accepted

I haven't checked but I believe Devise does that for you; it includes only certain attributes via attr_accessible.

In any case the right way to solve this is to override the as_json method like so:

def as_json(options = nil)
  {
    my_attr: my_attr,
    etc: etc
  }
end

It's a simple hash and it's a really powerful method to generate JSON in AR, without messing with the to_json method.

link|improve this answer
feedback

include something like this in your model class:

  attr_accessible :id, :email, :password, :password_confirmation, :remember_me

Initially the id wasn't included in json but after I added it to attr_accessible it worked!!

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.