我有这个模型属性:
class CreateRoles < ActiveRecord::Migration
# create role model with relation to users and projects
def change
create_table :roles do |t|
t.references :user
t.references :project
t.boolean :senior_author , :default => 0
t.boolean :first_author , :default => 0
t.boolean :author , :default => 0
t.boolean :bio_informatician, :default => 0
end
end
end
我的表格是:
form do |f|
f.inputs "Details" do # Project's fields
f.input :title
f.input :code
end
f.has_many :roles do |app_f|
app_f.inputs do
if !app_f.object.nil?
app_f.input :_destroy, :as => :boolean, :label => "Effacer"
end
app_f.input :user, :include_blank => false, :label_method => :to_label
#app_f.input :senior_author
#app_f.input :first_author
#app_f.input :author
#app_f.input :bio_informatician
end
end
f.buttons
end
如何制作最后四个app_f.input的集合()或单选按钮?
答案 0 :(得分:6)
您可以使用集合属性
f.input :user, :collection => User.all.map{|u| [u.name, u.id]}
我不知道这是否会对你有所帮助,但我认为非常陌生,因为唱片不会对唱片进行选择。