vote up 0 vote down star

I'm trying to retrieve JSON data from a remote site with Rails/Prototype.

I've found that there's a branch of Prototype that has an Ajax.JSONRequest() function. I can't get this to work.

jQuery has a $.getJSON() function, but I'm using some Prototype functions and I'd rather not switch to jQuery or use no conflict mode.

What am I missing? It seems like this would be easily done with Rails or Prototype.

flag

77% accept rate
I'm a little confused. You mention you want to get json with Rails, but want to use JavaScript? Who do you want making the request - the server or the client? – Andy Gaskell Nov 10 at 19:01
I'm asking if there is a Rails helper for JSONP. Client-side or server-side. Edited original post for clarity. – mculp Nov 10 at 19:07

1 Answer

vote up 1 vote down

Do you need to use Rails helpers to make the client request JSON? It's easy with Prototype

new Ajax.Request('/some_url', { method:'get', onSuccess: function(transport){ var json = transport.responseText.evalJSON(); } });

You just need to make sure that /some_url responds with JSON to an XHTTPRequest (preferably using respond_to?, but you can also check request.xhr?), using Rails' Object#to_json method.

link|flag
This isn't working with remote sites. – mculp Nov 11 at 17:11

Your Answer

Get an OpenID
or
never shown

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