In rails 3, how to create a Dropdown from hash

I have following code in my User class

class User
  ...   other codes
  key :gender, Integer    # i use mongo db

  class << self
    def genders()
      genders = {
        '1' => 'Male',
        '2' => 'Female',
        '3' => 'Secret'
      }
    end
  end

end

In the user form, i am trying to create a gender dropdown list

<%= f.collection_select nil, :gender, User.genders, :key, :value %>

but it complain

undefined method `merge' for :value:Symbol

So what is the proper way to create the dropdown?

Thanks

link|improve this question

78% accept rate
Why nil as first argument to collection_select? – Michaël Witrant Jul 12 '11 at 6:16
i dont know.. i read from the api doc...and some blog article do thing like that..i just copy – shrimpy Jul 12 '11 at 6:34
feedback

1 Answer

up vote 2 down vote accepted

This should work:

<%= f.collection_select :gender, User.genders, :first, :last %>

Edit: Explanations:

collection_select will call each on the object you give (User.genders here) and the two methods (first and last here) on each object. It's roughly equivalent to something like this:

User.genders.each do |object|
  output << "<option value=#{object.first.inspect}>#{h object.last}</option>"
end

When you call each on a Hash, it yields an Array of two values (the key and the value). These values can be retreived with the first and last methods.

link|improve this answer
Hi Michael, it is working ..... but why to_arry will help??? can you explain a little bit..coz i am new to ruby... – shrimpy Jul 12 '11 at 6:32
Actually it doesn't because Hash has an each method. I removed it and added a some explanations. – Michaël Witrant Jul 12 '11 at 7:05
feedback

Your Answer

 
or
required, but never shown

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