Tagged Questions
0
votes
2answers
75 views
Not getting a [:id] prameter from url, Default route is not working
When I request a URL as follows :
http://localhost:3000/password_resets/edit/4RghIKJNygEDswIuuCo
I'm not getting the [:id] parameter, i.e. 4RghIKJNygEDswIuuCo.
Here is my route file, are there any ...
1
vote
1answer
129 views
URL parameter in the URL itself instead of after ? in Rails
I have the following line in the routes:
match 'area/:area_id/stores', :to => "stores_directory#index", :as => "stores_directory"
I have a form where I can select an area_id as:
<%= ...
0
votes
1answer
523 views
Question Mark in URL Parameter when using two routes mvc 2
I have two routes, when I use the Default route it shows the url with Question mark in the parameter. I'm getting Editar/id?3 -- instead Editar/id/3. The other route is working fine, could you give me ...