aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/base.rb')
-rwxr-xr-xactionpack/lib/action_controller/base.rb16
1 files changed, 11 insertions, 5 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 0f5604c707..b1fdea4635 100755
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -748,16 +748,22 @@ module ActionController #:nodoc:
#
# === Rendering JSON
#
- # Rendering JSON sets the content type to text/x-json and optionally wraps the JSON in a callback. It is expected
- # that the response will be eval'd for use as a data structure.
+ # Rendering JSON sets the content type to application/json and optionally wraps the JSON in a callback. It is expected
+ # that the response will be parsed (or eval'd) for use as a data structure.
#
- # # Renders '{name: "David"}'
+ # # Renders '{"name": "David"}'
# render :json => {:name => "David"}.to_json
#
+ # It's not necessary to call <tt>to_json</tt> on the object you want to render, since <tt>render</tt> will
+ # automatically do that for you:
+ #
+ # # Also renders '{"name": "David"}'
+ # render :json => {:name => "David"}
+ #
# Sometimes the result isn't handled directly by a script (such as when the request comes from a SCRIPT tag),
- # so the callback option is provided for these cases.
+ # so the <tt>:callback</tt> option is provided for these cases.
#
- # # Renders 'show({name: "David"})'
+ # # Renders 'show({"name": "David"})'
# render :json => {:name => "David"}.to_json, :callback => 'show'
#
# === Rendering an inline template