I want a resource URI to look like this:

https://domain.tld/resource?param=foo&param=bar&param=baz

But Rails requires array query params to use the square bracket notation. Before URL escaping, the Rails equivalent of the above URI looks like this:

https://domain.tld/resource?param[]=foo&param[]=bar&param[]=baz

I can manually wrangle request.url inside of my controller, but I'd rather not do this ad-hoc if I can help it. Is there a standard way to support the first style of URI in Rails?

有帮助吗?

解决方案

No standard way.

Any way I think it is not good idea to change it for whole rails application, because it breaks conventions (and probably some helpers).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top