web-dev-qa-db-ja.com

:class_nameオプションを使用したbelongs_toが失敗する

何が問題だったかはわかりませんが、belongs_toで:class_nameオプションを使用できません。誰かが私を啓発できますか?どうもありがとう!

これが私のコードの一部です。

class CreateUsers < ActiveRecord::Migration
    def self.up
        create_table :users do |t|
            t.text :name
        end
    end

    def self.down
        drop_table :users
    end
end

#####################################################

class CreateBooks < ActiveRecord::Migration
    def self.up
        create_table :books do |t|
            t.text :title
            t.integer :author_id, :null => false
        end
    end

    def self.down
        drop_table :books
    end
end

#####################################################

class User < ActiveRecord::Base
    has_many: books
end

#####################################################

class Book < ActiveRecord::Base
    belongs_to :author, :class_name => 'User', :validate => true
end

#####################################################

class BooksController < ApplicationController
    def create
        user = User.new({:name => 'John Woo'})
        user.save
        @failed_book = Book.new({:title => 'Failed!', :author => @user})
        @failed_book.save # missing author_id
        @success_book = Book.new({:title => 'Nice day', :author_id => @user.id})
        @success_book.save # no error!
    end
end

環境:

Ruby 1.9.1-p387 Rails 2.3.5

27
crackpot
class User < ActiveRecord::Base
  has_many :books, :foreign_key => 'author_id'
end

class Book < ActiveRecord::Base
  belongs_to :author, :class_name => 'User', :foreign_key => 'author_id', :validate => true
end

最善の方法は、移行を変更してauthor_idからuser_id。次に、:foreign_keyオプション。

61
Tony Fontenot

そのはず

belongs_to :user, :foreign_key => 'author_id'

外部キーが作成者IDの場合。実際にはUserクラスがあるので、Bookはbelongs_to:userでなければなりません。

7

マイグレーション

t.belongs_to :author, foreign_key: { to_table: :users }

Rails 5

0
Lijun Guo

私はこのようにします:

移行-

class AddAuthorToPosts < ActiveRecord::Migration
  def change
    add_reference :posts, :author, index: true
    add_foreign_key :posts, :users, column: :author_id
  end
end

クラスPost

  belongs_to :author, class_name: "User"
0
rld