What is the simplest way to identify and separate GET and POST parameters from a controller in Ruby on Rails, which will be equivalent to $_GET and $_POST variables in PHP?
feedback
|
|
I don't know of any convenience methods in Rails for this, but you can access the querystring directly to parse out parameters that are set there. Something like the following:
| |||||||||||||||||
feedback
|
|
You can use the | |||||||||
feedback
|
|
If you want to check the type of request in order to prevent doing anything when the wrong method is used, be aware that you can also specify it in your routes.rb file:
or
Your PostsController's update method will now only be called when you effectively had a post. Check out the doc for resources. | |||||
feedback
|
|
There is a difference between GET and POST params. A POST HTTP request can still have GET params. GET parameters are URL query parameters. POST parameters are parameters in the body of the HTTP request. you can access these separately from the request.GET and request.POST hashes. | ||||
|
feedback
|
|
I think what you want to do isn't very "Rails", if you know what I mean. Your GET requests should be idempotent - you should be able to issue the same GET request many times and get the same result each time. | |||||||||||
feedback
|
|
You don't need to know that level of detail in the controller. Your routes and forms will cause appropriate items to be added to the params hash. Then in the controller you just access say The mapping between GET and POST (and PUT and DELETE) and controller actions is set up in | |||
|
feedback
|