将两个模型链接在一起时的未知属性

时间:2012-05-12 00:09:13

标签: ruby-on-rails ruby ruby-on-rails-3 foreign-keys relationship

我的应用程序的简要概述。

这是非常基本的,因为用户首先在一个页面上创建一个A客户端,然后使用另一个创建并为用户分配作业。

我的客户端模型和视图按预期工作,但我无法链接我的作业模型。

这是我的工作模式。

class Client < ActiveRecord::Base 
  has_and_belongs_to_many :jobs
end

class Job < ActiveRecord::Base
  has_and_belongs_to_many :clients
end

这也是我的客户控制器。

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

在我的表格中,我有两个字段。一个用于作业名称,另一个用于下载数据库中列出的所有客户端。

当填写此内容时,我按保存即可获得以下错误。

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"}

我有一个名为clients_jobs的联结表设置..

class AddClientsJobsTable < ActiveRecord::Migration
  def up
    create_table :clients_jobs, :id => false do |t|
      t.belongs_to :job, :client
      t.integer :client_id
      t.integer :job_id
  end
end

  def down
    drop_table :clients_jobs
  end
end

我认为我需要声明client_id

某处,但这是我的第一个Rails应用程序,我不知道在哪里。

非常感谢任何帮助。

编辑:这是我的工作表格。

<%= simple_form_for :job do |f| %>
  <%= f.input :name %>
  <%= select("job", "client_id", Client.all.collect {|c| [ c.name, c.id ] }, {:include_blank => 'None'})%>
  <%= f.button :submit %>
<% end %>

1 个答案:

答案 0 :(得分:0)

您的模型声明作业 - 客户端是一个habtm关联,但您的表单实现好像作业属于(一个)客户端。如果您确实打算将工作分配给多个客户,那么您的工作应该类似于:

<%= collection_select(:job, :client_ids, Client.all, :id, :name, {:include_blank => 'None'}, { :multiple => true }) %>

注意复数'client_ids'并在输入中允许多个。

如果某个作业只属于一个用户,则不应使用has_and_belongs_to_many:clients。