123456789_123456789_123456789_123456789_123456789_

Module: ActionDispatch::Http::Parameters

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Included In:
Defined in: actionpack/lib/action_dispatch/http/parameters.rb

Constant Summary

Instance Attribute Summary

  • #path_parameters rw

    Returns a hash with the parameters used to form the path of the request.

Instance Method Summary

Instance Attribute Details

#path_parameters (rw)

Returns a hash with the parameters used to form the path of the request. Returned hash keys are strings:

{'action' => 'my_action', 'controller' => 'my_controller'}
[ GitHub ]

  
# File 'actionpack/lib/action_dispatch/http/parameters.rb', line 39

def path_parameters
  @env[PARAMETERS_KEY] ||= {}
end

Instance Method Details

#parameters Also known as: #params

Returns both GET and POST parameters in a single hash.

[ GitHub ]

  
# File 'actionpack/lib/action_dispatch/http/parameters.rb', line 11

def parameters
  @env["action_dispatch.request.parameters"] ||= begin
    params = begin
      request_parameters.merge(query_parameters)
    rescue EOFError
      query_parameters.dup
    end
    params.merge!(path_parameters)
  end
end

#params

Alias for #parameters.

[ GitHub ]

  
# File 'actionpack/lib/action_dispatch/http/parameters.rb', line 21

alias :params :parameters

#symbolized_path_parameters

[ GitHub ]

  
# File 'actionpack/lib/action_dispatch/http/parameters.rb', line 28

def symbolized_path_parameters
  ActiveSupport::Deprecation.warn(
    '`symbolized_path_parameters` is deprecated. Please use `path_parameters`.'
  )
  path_parameters
end