Flowdock
method

to_query

Importance_1
v2.3.8 - Show latest stable - 0 notes - Class: ActiveSupport::CoreExtensions::Hash
to_query(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_query # => "name=David&nationality=Danish"

  { :name => 'David', :nationality => 'Danish' }.to_query('user') # => "user%5Bname%5D=David&user%5Bnationality%5D=Danish"
Show source
Register or log in to add new notes.