3

私は一貫してエラーを受け取っています

   uninitialized constant User::Relationships

レールチュートリアルの第11章を実行する場合。

ブラウザにログインしているときにホームページにアクセスしようとすると、完全なエラーが発生します。

    Extracted source (around line #11):

8:          </a>
9:          <a href="<%= followers_user_path(@user) %>">
10:         <strong id="followers" class="stat">
11:             <%= @user.followers.count %>
12:         </strong>
13:         followers
14:     </a>

私はこの章を何度も読み、コードのすべての行をチェックしましたが、時々あなたの目があなたに悪ふざけをするので、ここに残りのコードがあります

users.rb

class User < ActiveRecord::Base
attr_accessible :email, :name, :password, :password_confirmation
has_secure_password

has_many :microposts, dependent: :destroy 
has_many :relationships, foreign_key: "follower_id", dependent: :destroy
has_many :followed_users, through: :relationships, source: :followed 
has_many :reverse_relationships, foreign_key: "followed_id",
                               class_name: "Relationships",
                               dependent:   :destroy
has_many :followers, through: :reverse_relationships, source: :follower

before_save { |user| user.email = email.downcase}
before_save :create_remember_token

validates :name, presence:true, length: { maximum: 50 }

VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence: true, format: { with: VALID_EMAIL_REGEX},
                uniqueness: { case_sensitive: false }
validates :password, presence: true, length: { minimum: 6}
validates :password_confirmation, presence: true

def feed
  Micropost.where("user_id =?", id)
end

def following?(other_user)
  relationships.find_by_followed_id(other_user.id)
end

def follow!(other_user)
  relationships.create!(followed_id: other_user.id)
end

def unfollow!(other_user)
  relationships.find_by_followed_id(other_user.id).destroy
end

private
  def create_remember_token
    self.remember_token = SecureRandom.urlsafe_base64
  end

end

これはクラス自体です

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

これがチュートリアルの内容です...念のために:follower_idを追加し直しましたが、それでも機能しませんでした。

また、relationship_controllerも構築しています。

class RelationshipsController < ApplicationController
before_filter :signed_in_user

def create
  @user = User.find(params[:relationship][:follower_id])
  current_user.follow!(@user)
  respond_to do |format|
    format.html { redirect_to @user }
    format.js
  end
end

def destroy
  @user = Relationship.find(params[:id]).followed
  current_user.unfollow!(@user)
  respond_to do |format|
    format.html { redirect_to @user }
    fromat.js
  end
end

終わり

そしてルートで...

 resources :users do
   member do
     get :following, :followers
   end
 end

エラーが発生しているページは次のようになります。

<% @user ||= current_user %>
<div class = "stats">
<a href ="<%= following_user_path(@user)%>">
    <strong id="following" class="stat">
        <%= @user.followed_users.count %>
    </strong>
    following
</a>
<a href="<%= followers_user_path(@user) %>">
    <strong id="followers" class="stat">
        <%= @user.followers.count %>
    </strong>
    followers
</a>
</div>

2番目のブロックを削除すると、2番目のブロックの前のコードの最初の部分が完全に機能します。なんらかの理由で「フォロワー」関係が確立されていないだけです。私はコンソールでそれをいじってみましたが、呼び出していませんでしたが、user.followed_usersは機能します。私はこれで4時間遊んでいて、テーブルを落とし、再構築しましたが、動作させることができません。

私は以前にスタックオーバーフローを調べてみましたが、これを見つけました:

Rubyエラー(初期化されていない定数User :: Relationship)

しかし、そこにある解決策はどれも役に立ちませんでした。助けてくれてありがとう!

4

1 に答える 1

5

タイプミスがあります:

has_many :reverse_relationships, foreign_key: "followed_id",
                                 class_name: "Relationships",

最後のビットをに変更しclass_name: "Relationship"ます。

于 2013-02-07T04:49:36.543 に答える