class PlayerProfile < ActiveRecord::Base
has_many :playing_roles
has_many :player_roles, through: :playing_roles
accepts_nested_attributes_for :playing_roles, :allow_destroy => true
end
class PlayingRole < ActiveRecord::Base
belongs_to :player_roles
belongs_to :player_profile
end
class PlayerRole < ActiveRecord::Base
has_many :playing_roles
has_many :player_profiles, through: :playing_roles
end
Schema.rb
create_table "player_profiles", force: true do |t|
t.integer "user_id"
t.string "firstname"
t.string "lastname"
t.date "birthdate"
t.string "favorite_team"
t.string "mobile"
t.string "address"
t.string "lang"
t.string "team"
t.integer "weight"
t.integer "height"
t.text "biography"
t.string "idols"
t.datetime "created_at"
t.datetime "updated_at"
t.string "nationality"
end
add_index "player_profiles", ["user_id"], name: "index_player_profiles_on_user_id", using: :btree
create_table "player_roles", force: true do |t|
t.string "name"
end
create_table "playing_roles", force: true do |t|
t.integer "player_profile_id"
t.integer "player_role_id"
t.datetime "created_at"
t.datetime "updated_at"
end
我需要显示玩家可以玩的每个角色的复选框。选中的复选框表示“play_roles”关系
上的记录在Rails4中使用 collection_check_boxes:
更新
如果我使用:playing_role_ids ,我会收到此错误:
<%=collection_check_boxes(:player_profile, :playing_role_ids, PlayerRole.all, :id, :name)%>
似乎它正在寻找关系中的记录,但如果记录不存在则意味着没有关系,并且必须取消选中该复选框。
答案 0 :(得分:6)
在Rails 3.x中,使用simple_form:
<%= simple_form_for @player_profile do |f| %>
<%= f.association :player_roles, as: :check_boxes %>
...
<% end %>
在Rails 4中,使用collection_check_boxes
写
<%=collection_check_boxes(:player_profile, :playing_role_ids, PlayerRole.all, :id, :name)%>
您必须使用名称:playing_roles_ids
,因为您要分配ID而非PlayRoles。
答案 1 :(得分:0)
如果您使用的是Rails 4,则可以使用collection_check_boxes
:http://api.rubyonrails.org/classes/ActionView/Helpers/FormOptionsHelper.html#method-i-collection_check_boxes