Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I am getting this annoying nested object problem. I generate JSON data from a rails model and pass it into a backbone model like this:

board = Board.find(anyid)
covers = [link1, link2]

return_json = {
 board: user,
 covers: covers
}

resond_to do |format|
 format.js { render json: return_json }
end

And in my backbone end, I get something like this:

enter image description here

Why is the board object nested with another object? I've ran into this situation several times, and I have to do something like @model.get("board").board.name to retrieve the value. This is annoying. However you can see that the array works as I expected.

If I didn't make it clear, please comment! I will be around.

share|improve this question
1  
@rjz Thank you sir! Exactly what I want. – NathanInMac Nov 5 '12 at 23:23
You bet. Glad it helped! – rjz Nov 5 '12 at 23:49

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.