instance method
content_type
Ruby on Rails 2.3.18
Since v2.3.18 Last seen in v2.3.18Signature
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 88
def content_type
@content_type ||= begin
if @env['CONTENT_TYPE'] =~ /^([^,\;]*)/
Mime::Type.lookup($1.strip.downcase)
else
nil
end
end
end
Defined in actionpack/lib/action_controller/request.rb line 88
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::Request