Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a document from a mongoose find that I want to extend before JSON encoding and sending out as a response. If I try adding properties the the doc it is ignored. The properties don't appear in Object.getOwnPropertyNames(doc) making a normal extend not possible. The strange thing is that JSON.parse(JSON.encode(doc)) works and returns an object with all of the correct properties. Is there a better way to do this?

share|improve this question

1 Answer

up vote 19 down vote accepted

Mongoose Model's inherit from Document's, which have a toObject() method. I believe what you're looking for should be the result of doc.toObject().

share|improve this answer
That did it... Thanks. – respectTheCode Sep 21 '11 at 18:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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