Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby on Rails 3: How to retrieve POST and GET params separately?

I know you can get parameters using params, but the thing is that it merges all parameters whether they were sent via GET or POST:

If you send a request via GET, no problem, the parameters can only be squeezed in the URL.

But if you send a POST request that has a URL like /blabla?foo=bar&foo2=bar2, is there a way to tell the difference between the variables sent via the URL and the variables sent through the actual POST method?

like image 706
Etienne Avatar asked Feb 02 '23 17:02

Etienne


1 Answers

Yes, in your controller you can get the GET parameters using request.GET and the POST parameters with request.POST

like image 185
Mark Avatar answered Feb 05 '23 15:02

Mark