Generate the query string with any extra keys in the hash and append it to the given path, returning the new path.
Source Code
# File action_controller/routing/route.rb, line 132 def append_query_string(path, hash, query_keys=nil) return nil unless path query_keys ||= extra_keys(hash) "#{path}#{build_query_string(hash, query_keys)}" end
<code/>and<pre/>for code samples.