Returns a hash with the parameters used to form the path of the request. Returned hash keys are strings. See symbolized_path_parameters for symbolized keys.
Example:
{'action' => 'my_action', 'controller' => 'my_controller'}
Source Code
# File action_controller/request.rb, line 308 def path_parameters @path_parameters ||= {} end
<code/>and<pre/>for code samples.