method
to_param
v3.0.0 -
Show latest stable
- Class:
Hash
to_param(namespace = nil)public
Converts a hash into a string suitable for use as a URL query string. An optional namespace can be passed to enclose the param names (see example below).
Examples
{ :name => 'David', :nationality => 'Danish' }.to_param # => "name=David&nationality=Danish" { :name => 'David', :nationality => 'Danish' }.to_param('user') # => "user[name]=David&user[nationality]=Danish"