Reading this: http://guides.rubyonrails.org/routing.html#adding-more-restful-actions
What does it mean to add a 'member route'?
or do add a route to the collection?
What is a member and a collection when talking about routes?
|
Reading this: http://guides.rubyonrails.org/routing.html#adding-more-restful-actions What does it mean to add a 'member route'? or do add a route to the collection? What is a member and a collection when talking about routes? |
|||
|
|
|
They're both ways to add additional actions to a resource-based route in Rails. I like to think of them in terms of RESTful URLs. Consider the basics for a resource/model
Notice how:
Member routes and collection routes let you add additional routes/actions using the same techniques as I listed above. A member route adds a custom action to a specific instance using the URL suffix and HTTP method you provide. So, if you had a member route declaration of
Note how it overloads Similarly, a collection route adds an overload to the collection and/or a non-specific instance (it's up to you to decide exactly what it implies). So, if you declared
...in very much the same way as You can also customize the HTTP method. For example, I just recently had a project where I needed a "reply" action on a
This keeps the routes restful while still expanding upon the basic 7 actions. |
||||
|
The built in member routes are So it really depends if you want to do something with a single record (member) or multiple records (collection). The url helpers reflect singular (member) and plural (collection). For example: This is a member:
This is a collection:
If you define a custom collection path, it could look like this in your
To make somebody a manger:
To list all managers:
I don't think that the route "cares" if you use it differently, but this is the Rails way. It will make your code easier to read and other coders will have it easier to understand and maintain your code. |
|||||
|