我正在开发一个需要has_and_belongs_to_many关系的项目。
这涉及用户拥有许多“提案”和属于许多用户的提案。
这很重要,因为用户可以创建提案,并邀请其他用户访问该提案。
我无法正确设置,阅读了许多其他教程和SO问题,但无法对其进行排序。
这是我到目前为止所拥有的。
User.rb
class User < ActiveRecord::Base
has_and_belongs_to_many :proposals
.......
Proposal.rb
class Proposal < ActiveRecord::Base
has_and_belongs_to_many :users
...
database migration for HABTM
class CreateProposalUserJoinTable < ActiveRecord::Migration
def change
create_table :proposals_users, :id => false do |t|
t.integer :user_id
t.integer :proposal_id
end
end
end
/views/proposals/_form.html.erb
...
<%= f.collection_select(:users, User.all, :id, :trading_name) %>
<%= f.collection_select(:users, User.all, :id, :trading_name) %>
<%= f.collection_select(:users, User.all, :id, :trading_name) %>
...
这是我希望用户选择三个用户的地方,并将它们添加到关系中。
我尝试将此逻辑添加到控制器,但无法使其正常工作。
最初我把它作为外键与id一起攻击,但是想使用有效的记录关联。
[编辑]
proposals_controller.rb
def create
@proposal = Proposal.new(params[:proposal])
if current_user
@user = current_user
@proposal.creator_id = @user.id
@proposal.cost = 10
end
respond_to do |format|
if @proposal.save
(params[:proposal][:users]).each do |user|
if user.to_i.to_s == user || user.to_f.to_s == user
puts user
puts "********************\n\n\n\n\n\n\n"
@proposal.users = User.find(user)
User.find(user).proposals << @proposal
end
end
@proposal.save
format.html { redirect_to @proposal, notice: 'proposal was successfully created.' }
format.json { render json: @proposal, status: :created, location: @proposal }
else
format.html { render action: "new" }
format.json { render json: @proposal.errors, status: :unprocessable_entity }
end
end
end
答案 0 :(得分:3)
没有必要将用户分配给提案。相反,您也可以分配ID,如下所示:
proposal.user_ids = params[:proposal][:user_ids]
在以下代码中,分配自动完成:
proposal.attributes = params[:proposal]
为了使这项工作,视图应该像这样改变:
<%= select_tag("proposal[user_ids][]", options_from_collection_for_select(User.all, :id, :trading_name)) %>