vote up 2 vote down star
1

I have a URL of form http://www.example.com?foo=one&foo=two

I want to get an array of values ['one', 'two'] for foo, but params[:foo] only returns the first value.

I know that if I used foo[] instead of foo in the URL, then params[:foo] would give me the desired array.

However, I want to avoid changing the structure of the URL if possible, since its form is provided as a spec to a client application. is there a good way to get all the values without changing the parameter name?

flag

71% accept rate

2 Answers

vote up 5 vote down check

You can use the default Ruby CGI module to parse the query string in a Rails controller like so:

params = CGI.parse(request.query_string)

This will give you what you want, but note that you won't get any of Rails other extensions to query string parsing, such as using HashWithIndifferentAccess, so you will have to us String rather than Symbol keys.

Also, I don't believe you can set params like that with a single line and overwrite the default rails params contents. Depending on how widespread you want this change, you may need to monkey patch or hack the internals a little bit. However the expeditious thing if you wanted a global change would be to put this in a before filter in application.rb and use a new instance var like @raw_params

link|flag
works like a charm, thanks. I just needed it in a single place in one controller, so I didn't even need to muck with params. – ykaganovich Apr 15 at 19:47
vote up 1 vote down

I like the CGI.parse(request.query_string) solution mentioned in another answer. You could do this to merge the custom parsed query string into params:

params.merge!(CGI.parse(request.query_string).symbolize_keys)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.