method
respond_to
v3.1.0 -
Show latest stable
-
0 notes -
Class: ActionController::MimeResponds::ClassMethods
- 1.0.0
- 1.1.0
- 1.1.1
- 1.1.6
- 1.2.0
- 1.2.6
- 2.0.0
- 2.0.1
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.2
- 2.3.8
- 3.0.0 (0)
- 3.0.5 (0)
- 3.0.7 (0)
- 3.0.9 (-38)
- 3.1.0 (2)
- 3.2.1 (0)
- 3.2.3 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- What's this?
respond_to(*mimes)
public
Defines mime types that are rendered by default when invoking respond_with.
Examples:
respond_to :html, :xml, :json
Specifies that all actions in the controller respond to requests for :html, :xml and :json.
To specify on per-action basis, use :only and :except with an array of actions or a single action:
respond_to :html respond_to :xml, :json, :except => [ :edit ]
This specifies that all actions respond to :html and all actions except :edit respond to :xml and :json.
respond_to :json, :only => :create
This specifies that the :create action and no other responds to :json.


