instance method
body
Ruby on Rails 3.2.22.5
Since v3.0.20Signature
body()
The request body is an IO input stream. If the RAW_POST_DATA environment variable is already set, wrap it in a StringIO.
Source
# File actionpack/lib/action_dispatch/http/request.rb, line 196
def body
if raw_post = @env['RAW_POST_DATA']
raw_post.force_encoding(Encoding::BINARY) if raw_post.respond_to?(:force_encoding)
StringIO.new(raw_post)
else
@env['rack.input']
end
end
Defined in actionpack/lib/action_dispatch/http/request.rb line 196
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Request