Snippets (jsonp) (2)

4 months ago View more (5 lines)
1
2
3
4
5
# JSON-P in Rails 2
render :json => @comments, :callback => params[:callback]

# JSON-P in Rails 1.2
render :json => @comments.to_json, :callback => params[:callback]
4 months ago View more (33 lines)
1
2
3
4
5
#JSON-P Rack Handler

# config/jsonp.rb
class JsonP
  def initialize(app)