Frage

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?

War es hilfreich?

Lösung

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).

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top