我有以下表格:
<h2>Add collaborators to the wiki <strong><%= @wiki.title %></strong></h2>
<%= form_for ([@wiki, @collaboration]) do |f| %>
<% @users.each do |user| %>
<p><%= check_box_tag 'user_ids[]', user.id %>
<%= label_tag 'user_ids[]', user.email %>
<% end %>
<p> <%= f.submit %> <p>
<% end %>
它应该执行以下操作,提供可能的检查用户=&gt;然后所有这些用户都应该能够编辑这个特定的表单(@wiki)
我因此创建了一个带有user_id和wiki_id的连接表。如果我试着 通过表单保存协作者,但它似乎不起作用。
我在我的导轨中得到了这个
#<Collaboration id: 1, user_id: nil, wiki_id: 1, created_at: "2015-02-20 10:40:49", updated_at: "2015-02-20 10:40:49">,
所以它似乎没有取得用户。
我的控制器设置如下
class CollaborationsController < ApplicationController
def new
@wiki = Wiki.find(params[:wiki_id])
@collaboration = @wiki.collaborations.new
@users = User.all
end
def create
@wiki = Wiki.find(params[:wiki_id])
#selected users
@collaboration = @wiki.collaborations.build(user_id: params[:user_id])
if @collaboration.save
redirect_to wikis_path, notice: "Wiki shared."
else
flash[:error] = "Error creating wiki. Try again."
render :new
end
end
end
我的架构文件如下所示:
create_table "collaborations", force: :cascade do |t|
t.integer "user_id"
t.integer "wiki_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.datetime "created_at"
t.datetime "updated_at"
t.string "role"
end
add_index "users", ["email"], name: "index_users_on_email", unique: true
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
create_table "wikis", force: :cascade do |t|
t.string "title"
t.text "body"
t.boolean "private"
t.integer "user_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
add_index "wikis", ["user_id"], name: "index_wikis_on_user_id"
create_table "wikis_and_collaborators", force: :cascade do |t|
t.integer "user_id"
t.integer "wiki_id"
t.datetime "created_at"
t.datetime "updated_at"
end
end
对这里出了什么问题的想法?
答案 0 :(得分:0)
假设我们有params[:user_ids] = [123, 456, 789]
您可以说@wiki.user_ids = [123, 456, 789]; @wiki.save
,这将自动生成联接记录。所以,这实际上是对wiki对象的更新,你的表单也应该编辑Wiki对象。我会这样做:
<h2>Add collaborators to the wiki <strong><%= @wiki.title %></strong></h2>
<%= form_for (@wiki) do |f| %>
<% @users.each do |user| %>
<p><%= check_box_tag 'wiki[user_ids][]', user.id, @wiki.user_ids.include?(user.id) %>
<%= label_tag 'wiki[user_ids][]', user.email %>
<% end %>
<p> <%= f.submit %> <p>
<% end %>
这将提交给WikiController#update action或WikiController #create action,具体取决于@wiki是否是新记录。
params将是params = {:id => 6, :wiki => {:user_ids => [123, 456, 789]}}
,其中6是示例wiki id。
遵循惯例,你根本不会访问CollaborationsController,你将访问WikisController,因为它是一个正在更新的Wiki。 WikisController #update操作完全是标准的:
def update
@wiki = Wiki.find_by_id(params[:id])
@wiki.update_attributes(params[:wiki])
redirect_to wiki_path(@wiki) #or whatever
end