Namespace
Module
Class
Methods
Constants
DEFAULT_PARSERS | = | { Mime[:json].symbol => -> (raw_post) { data = ActiveSupport::JSON.decode(raw_post) data.is_a?(Hash) ? data : { _json: data } } } |
PARAMETERS_KEY | = | "action_dispatch.request.path_parameters" |
Attributes
[R] | parameter_parsers | Returns the parameter parsers. |
Instance Public methods
parameters()
Returns both GET and POST parameters in a single hash.
Also aliased as: params
📝 Source code
# File actionpack/lib/action_dispatch/http/parameters.rb, line 50
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
🔎 See on GitHub
path_parameters()
Returns a hash with the parameters used to form the path of the request. Returned hash keys are symbols:
{ action: "my_action", controller: "my_controller" }
📝 Source code
# File actionpack/lib/action_dispatch/http/parameters.rb, line 82
def path_parameters
get_header(PARAMETERS_KEY) || set_header(PARAMETERS_KEY, {})
end
🔎 See on GitHub