Is there an easy way to return data to web service clients in JSON using Rails?

link|improve this question

feedback

5 Answers

up vote 9 down vote accepted

Rails resource gives a RESTful interface for your model. Let's see.

Model

class Contact < ActiveRecord::Base
  ...
end

Routes

map.resources :contacts

Controller

class ContactsController < ApplicationController
  ...
  def show
    @contact = Contact.find(params[:id]

    respond_to do |format|
      format.html 
      format.xml {render :xml => @contact}
      format.js  {render :json => @contact.json}
    end
  end
  ...
end

So this gives you an API interfaces without the need to define special methods to get the type of respond required

Eg.

/contacts/1 # Responds with regular html page

/contacts/1.xml # Responds with xml output of Contact.find(1) and its attributes

/contacts/1.js # Responds with json output of Contact.find(1) and its attributes
link|improve this answer
Great answer! If I may update it to Rails 3, the json method now seems to be to_json. At least that's what worked for me... i.e. @contact.to_json – DanyW Oct 8 '11 at 7:39
feedback

Rails monkeypatches most things you'd care about to have a #to_json method.

Off the top of my head, you can do it for hashes, arrays, and ActiveRecord objects, which should cover about 95% of the use cases you might want. If you have your own custom objects, it's trivial to write your own to_json method for them, which can just jam data into a hash and then return the jsonized hash.

link|improve this answer
monkeypatches? I have no idea what that means, but I could guess it refers to providing that method to most, if not all, objects – Adrian Anttila Sep 12 '08 at 16:53
1  
It's patching an existing object, adding the method or changing it if it exists. It's really just dynamic language extension. – Robert K Dec 9 '08 at 17:20
feedback

There is a plugin that does just this, http://blog.labnotes.org/2007/12/11/json_request-handling-json-request-in-rails-20/

And from what I understand this functionality is already in Rails. But go see that blog post, there are code examples and explanations.

link|improve this answer
feedback

ActiveRecord also provides methods to interact with JSON. To create JSON out of an AR object, just call object.to_json. TO create an AR object out of JSON you should be able to create a new AR object and then call object.from_json.. as far as I understood, but this did not work for me.

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.