How can I customize this render json output?

32 views
Skip to first unread message

Duane Morin

unread,
Jan 30, 2014, 4:49:41 PM1/30/14
to rubyonra...@googlegroups.com
I've got a big problem. I've got some code doing a REST API, outputting
JSON, that works fine and hasn't been touched in like 9 months. I've
also got a client out there in the wild that I can't touch, so I can't
muck with the API at all.


However in a recent bugfix update I"ve discovered that Rails has changed
a great deal under me, deprecated a lot of stuff, and I'm needing to
bring the code in line with modern expectations. That's fine. Where I'm
stuck is my json rendering all changed.


Say that I've got an array of Scholarship objects with id, name, etc...
When I asked to render the json of an array of scholarships previously I
would get:

[{"scholarship":{"id":2, "name":"foo"}}, {"scholarship":{"id":3,
"name":"bar"...

in short, an array of key value pairs where I had to iterate over the
array and start by saying x["scholarship"] to get at the data.

After update what I'm getting is:

[{"id":2, "name":"foo"}, {"id":3, "name":"bar"...

no root elements. Using the active record serializers I've gotten some
flexibility in specifying the root element, but now I either end up with
the above (no root element) or:

{"scholarships":["scholarships":{"id", 2....

where I get a root element for the whole Array that is then added to
every element.

Is anybody still with me and can help me unwind this? When rendering
the json for a scholarhip I need to specify the "scholarship" root tag
... and when rendering a collection of Scholarships I need to be able to
override and NOT show a root tag?

As noted I can't change the client. so if my resulting JSON is not
identical to what it's always been I've got a real problem!

--
Posted via http://www.ruby-forum.com/.

Na Su

unread,
Jan 31, 2014, 5:12:31 PM1/31/14
to rubyonra...@googlegroups.com
Is this what you're looking for?

selected_objects.map do |obj| {"scholarship" => obj} end.to_json

Frederick Cheung

unread,
Feb 1, 2014, 2:35:30 PM2/1/14
to rubyonra...@googlegroups.com


On Thursday, January 30, 2014 9:49:41 PM UTC, Ruby-Forum.com User wrote:

[{"id":2, "name":"foo"}, {"id":3, "name":"bar"...

no root elements.  Using the active record serializers I've gotten some
flexibility in specifying the root element, but now I either end up with
the above (no root element) or:

{"scholarships":["scholarships":{"id", 2....

where I get a root element for the whole Array that is then added to
every element.

Is anybody still with me and can help me unwind this?  When rendering
the json for a scholarhip I need to specify the "scholarship" root tag
... and when rendering a collection of Scholarships I need to be able to
override and NOT show a root tag?


Have you tried playing with the include_root_in_json setting?

If it comes to it you could always override as_json in your model or use something like jbuilder to construct your json explicitly

Fred

Walter Lee Davis

unread,
Feb 1, 2014, 2:52:41 PM2/1/14
to rubyonra...@googlegroups.com
+100 for jbuilder -- using it today for the second time, and discovered that I quite like it. If you lean back and try to do less, it works better!

Walter

>
> Fred
>
> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
> To post to this group, send email to rubyonra...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/4cd71ec8-40bc-4414-b6b7-7628927e3957%40googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.

Reply all
Reply to author
Forward
0 new messages