Is there an easy way to return data to web service clients in JSON using Rails?
|
feedback
|
|
Rails resource gives a RESTful interface for your model. Let's see. Model
Routes
Controller
So this gives you an API interfaces without the need to define special methods to get the type of respond required Eg.
| |||
feedback
|
|
Rails monkeypatches most things you'd care about to have a 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 | |||||||
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. | |||
|
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. | |||
|
feedback
|