私のモデルにはこれがあります:
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に変換したいと思います。それは可能ですか?