Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i wonder what the difference is here:

resources :photos do
  member do
    get :preview
  end
end


# vs


resources :photos do
  collection do
    get :search
  end
end

http://pastie.org/1001727

im not sure i dont understand it.

thanks

share|improve this question

4 Answers

up vote 62 down vote accepted

A member route will require an ID, because it acts on a member. A collection route doesn't because it acts on a collection of objects. Preview is an example of a member route, because it acts on (and displays) a single object. Search is an example of a collection route, because it acts on (and displays) a collection of objects.

share|improve this answer
What about the create action? Say I wanted to make an alternative to 'create' - would it count as a member? – digitalWestie Apr 13 '11 at 13:46
1  
Yes, create is a member action. – Theo Apr 13 '11 at 20:03
But what about adding a "get" without any block? Is it member or collection route? My test showed its collection but with different id variable name. – lzap Apr 19 '11 at 15:12
                URL                 Helper                      Description
----------------------------------------------------------------------------------------------------------------------------------
member          /photos/1/preview   preview_photo_path(photo)   Acts on a specific resource so required id (preview specific photo)
collection      /photos/search      search_photos_url           Acts on collection of resources(display all photos)
share|improve this answer

1) :collection - Add named routes for other actions that operate on the collection. Takes a hash of #{action} => #{method}, where method is :get/:post/:put/:delete, an array of any of the previous, or :any if the method does not matter. These routes map to a URL like /users/customers_list, with a route of customers_list_users_url.

map.resources :users, :collection => { :customers_list=> :get }

2) :member - Same as :collection, but for actions that operate on a specific member.

map.resources :users, :member => { :inactive=> :post }

it treated as /users/1;inactive=> [:action => 'inactive', :id => 1]

share|improve this answer
nice example. explanation at the top could have been better though. – Mashit Apr 12 '12 at 18:23

Theo's answer is correct. For documentation's sake, I'd like to also note that the two will generate different path helpers.

member {get 'preview'} will generate:

preview_photo_path(@photo) # /photos/1/preview

collection {get 'search'} will generate:

search_photos_path # /photos/search

Note plurality!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.