Reputation: 119
This request goes to SHOW action in Webservices controller..
Reuest : webservices/getsomething&ids=1
This
Reuest : webservices/getsomething
goes where I wanted at getsomething action ...
This is my route.rb :
resources :webservices do
collection do
get 'getsomething'
end
end
rake routes :
getsomething_webservices GET /webservices/getsomething(.:format) webservices#getsomething
and still rails go in show action ???
Upvotes: 0
Views: 46
Reputation: 5556
You have error in your url. It should be webservices/getsomething?ids=1
. Change & to ?
Upvotes: 1