Suppose you have a url
localhost:3000?a=1
and in the request, you also have a post parameter
a=2
What wou
No it doesn't depend on de HTTP verb but you sure can have different actions to handle GET and POST or it can be the same and you'll get `params[:a] in both cases.
GET
POST