8

サンプル アプリのホームページを要求すると、次のエラー メッセージが表示されます (Michael Hartl のチュートリアルの第 11 章に従ってください)。

"ActiveRecord::HasManyThroughSourceAssociationNotFoundError in Pages#home"
"モデル リレーションシップでソース アソシエーション :followed_id が見つかりませんでした。'has_many :followed_users, :through => :relationships, :source => ' を試してください。フォロワーまたは:フォローされていますか?"

チュートリアルの指示に正確に従ったので、これは本当に奇妙です。すべてのコードフラグメントをコピーして貼り付けさえしました。

私のユーザーモデル(抜粋):

  class User < ActiveRecord::Base 

    has_many :relationships, foreign_key: "follower_id", dependent: :destroy
    has_many :followed_users, through: :relationships, source: "followed_id"

    has_many :reverse_relationships, foreign_key: "followed_id", class_name: "Relationship", dependent: :destroy
    has_many :followers, through: :reverse_relationships, source: :follower

私の関係モデル:

  class Relationship < ActiveRecord::Base
    attr_accessible :followed_id

    belongs_to :follower, class_name: "User"
    belongs_to :followed, class_name: "User"

    validates :follower_id, presence: true
    validates :followed_id, presence: true
  end

私の移行ファイル:

  class CreateRelationships < ActiveRecord::Migration
    def change
      create_table :relationships do |t|
        t.integer :follower_id
        t.integer :followed_id

        t.timestamps
      end

      add_index :relationships, :follower_id
      add_index :relationships, :followed_id
      add_index :relationships, [:follower_id, :followed_id], unique: true
    end
  end

私はこれを修正しようとしてきましたが、問題が何であるかはまったくわかりません (チュートリアルからの正確なコード コピー)。

4

1 に答える 1

21

エラーが見つかりました: ユーザー モデルを変更する必要がありました

  has_many :followed_users, through: :relationships, source: "followed_id"  

  has_many :followed_users, through: :relationships, source: :followed  

Hartl のチュートリアル Listing 11.10 http://ruby.railstutorial.org/book/ruby-on-rails-tutorial#code:has_many_following_through_relationshipsのタイプミスのようです。これは、そこから「source: "followed_id"」コードを取得したためです。

Hartlさんのgithub「サンプルアプリ」から修正コードを入手しました。

于 2012-06-01T16:24:47.323 に答える