instance method
content_type
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.2.3Signature
content_type()
The MIME type of the HTTP request, such as Mime::XML.
For backward compatibility, the post \format is extracted from the X-Post-Data-Format HTTP header if present.
Source
# File actionpack/lib/action_controller/request.rb, line 87
def content_type
Mime::Type.lookup(content_type_without_parameters)
end
Defined in actionpack/lib/action_controller/request.rb line 87
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::AbstractRequest