1

私のモデルにはこれがあります:

class Person < ActiveRecord::Base
  RELATIONSHIP_STATUSES = [
    "single",
    "in a relationship",
    "together",
    "it's complicated"
  ]

  validates :relationship_status, :inclusion => RELATIONSHIP_STATUSES
end

ビューのこれ:

collection_select(:person, :relationship_status, Person::RELATIONSHIP_STATUSES, :to_s)

そして、それをsimple_formに変換したいと思います。それは可能ですか?

4

1 に答える 1

0

私があなたを正しく理解していれば、それは簡単です(それはのためですformtastic):

<%= form.input :relationship_status, :as => :select, :collection => Person::RELATIONSHIP_STATUSES %>
于 2011-07-09T16:08:07.793 に答える