instance method
parameters
Ruby on Rails edge
Since v3.0.20Signature
parameters()
Returns both GET and POST parameters in a single hash.
Source
# File actionpack/lib/action_dispatch/http/parameters.rb, line 52
def parameters
params = get_header("action_dispatch.request.parameters")
return params if params
params = begin
request_parameters.merge(query_parameters)
rescue EOFError
query_parameters.dup
end
params.merge!(path_parameters)
set_header("action_dispatch.request.parameters", params)
params
end
Defined in actionpack/lib/action_dispatch/http/parameters.rb line 52
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Http::Parameters