我有两个模型jobs
和clients
。
用户可以简单地创建一个客户端,然后为他们分配一些作业。
这是我的模型。
job.rb
class Job < ActiveRecord::Base
has_and_belongs_to_many :clients
end
client.rb
class Client < ActiveRecord::Base
has_and_belongs_to_many :jobs
end
我创建新工作的表单如下所示:
<%= simple_form_for :job do |f| %>
<%= f.input :name %>
<%= <%= collection_select(:job, :client_ids, Client.all, :id, :name, {:include_blank => 'None'}, { :multiple => true }) %>%>
<%= f.button :submit %>
<% end %>
因此,您可以看到表单上有一个包含所有客户端的下拉框。
但是当试图保存时,我收到了这个混乱:
ActiveRecord::UnknownAttributeError in JobsController#create
unknown attribute: client_id
Application Trace | Framework Trace | Full Trace
app/controllers/jobs_controller.rb:22:in `new'
app/controllers/jobs_controller.rb:22:in `create'
Request
Parameters:
{"utf8"=>"✓",
"authenticity_token"=>"0ZVYpM9vTgY+BI55Y9yJDwCJwrwSgGL9xjHq8dz5OBE=",
"job"=>{"name"=>"Sample Monthly",
"client_id"=>"1"},
"commit"=>"Save Job"}
我的工作控制器很基本,看起来像这样:
class JobsController < ApplicationController
def index
@jobs = Job.find(:all)
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @job }
end
end
def new
@jobs = Job.new
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @job }
end
end
def create
@jobs = Job.new(params[:job])
respond_to do |format|
if @jobs.save
format.html { redirect_to @jobs, notice: 'Job was successfully created.' }
format.json { render json: @jobs, status: :created, location: @jobs }
else
format.html { render action: "new" }
format.json { render json: @jobs.errors, status: :unprocessable_entity }
end
end
end
def show
@jobs = Job.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @jobs }
end
end
end
我有一个联结表设置,其中job_id
和client_id
都是整数值。
所以我认为它只是在我的控制器中根据新建和动作定义它们的情况,如错误消息所示。
这是我的第一个Rails应用程序,虽然我不太确定如何。
非常感谢任何帮助!
答案 0 :(得分:0)
问题可能在您的表单中。尝试替换此
<%= <%= collection_select(:job, :client_ids, Client.all, :id, :name, {:include_blank => 'None'}, { :multiple => true }) %>%>
带
<%= f.association :clients %>
所以表单看起来像这样
<%= simple_form_for @job do |f| %>
<%= f.input :name %>
<%= f.association :clients %>
<%= f.button :submit %>
<% end %>