0

関連付けようとしている 2 つのモデルがあります。have_many の仕事をしているユーザーがいます。各モデルに関連付けを設定し、ジョブ モデルにforeign_idを追加しました。ユーザーがフォームに入力して求人を投稿すると、user_id は nil を返します。私は何を間違っていますか?create アクションに何か追加する必要はありますか? フォームにforeign_key用のフィールドを追加する必要がありますか? これが私がこれまでに持っているものです。ありがとう。

create_table "jobs", :force => true do |t|
    t.string   "category"
    t.string   "title"
    t.text     "description"
    t.string   "location"
    t.integer  "needed"
    t.decimal  "pay"
    t.string   "how"
    t.datetime "created_at",  :null => false
    t.datetime "updated_at",  :null => false
    t.decimal  "hours"
    t.date     "start_date"
    t.integer  "user_id"
  end


create_table "users", :force => true 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
    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",                             :null => false
    t.datetime "updated_at",                             :null => false
  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

end

class Job < ActiveRecord::Base
  belongs_to :user
  attr_accessible :category, :description, :how, :location, :needed, :pay, :start_date, :title,:hours
   validates :category, :title, :description, :how, :location, :needed,:hours, :pay,:start_date, presence: true
   validates :pay, :numericality => { :greater_than => 7.99 } 
end


class User < ActiveRecord::Base
  has_many :jobs, dependent: :destroy
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable
  attr_accessible :email, :password, :password_confirmation, :remember_me
  # attr_accessible :title, :body
end
4

1 に答える 1

0

はい、あなたのcreate行動では、次のJobsControllerようなものを書く必要があります:

current_user.jobs.build(params[:job])

また

@user.jobs.build(params[:job])

それ以外の

Job.new(params[:job])
于 2013-08-19T12:41:23.680 に答える