Sample code
Ajax call to request json object using jQuery:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.getJSON(<%= url_for :action => :request_json %>, function(data) { | |
alert(data.a); | |
alert(data.b); | |
}); |
code of rending json in controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def request_json | |
@response['headers']['Content-Type']='application/json' | |
obj = {"a" => 1, "b"=> 2} | |
result = obj.to_json | |
render :string => result, :use_layout_on_ajax => true | |
end |
I found this solution in the Rhomobile launchpad forum, it works perfectly.
This exactly looks like render json behaviour in Ruby on Rails.
No comments:
Post a Comment