我正在通过 Michael Hartl 的Rails 4.0 版本创建一个类似 Twitter 的应用程序,用户可以通过以下方式拥有多个关注者:关系,但是当我尝试加载调用任何类型的“follow”方法的页面时,错误的常量被初始化.
这是我的用户模型:
class User < ActiveRecord::Base
has_many :tweets
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: "Relationship", dependent: :destroy
has_many :followers, through: :reverse_relationships, source: :follower
这是我的关系模型:
class Relationship < ActiveRecord::Base
belongs_to :follower, class_name: "User"
belongs_to :followed, class_name: "User"
validates :follower_id, presence: true
validates :followed_id, presence: true
params.require(:followed_id)
end
这是错误根源的方法:
<% unless current_user == @user %>
<div id="follow_form">
<% if current_user.following?(@user) %>
<%= render 'unfollow' %>
<% else %>
<%= render 'follow' %>
<% end %>
馈入:
def following?(other_user)
relationships.find_by(followed_id: other_user.id)
end
我收到的错误是:
NameError in Users#show
uninitialized constant User::Relationship
我的路线是这样设置的:
Project1::Application.routes.draw do
root to: 'users#index'
get '/log_in' => 'sessions#log_in', as: :log_in
get '/log_out' => 'sessions#log_out', as: :log_out
resources :tweets
resources :relationships
resources :users do
member do
get :following, :followers
end
end
马修伯曼有一个非常相似的问题,但似乎没有找到解决办法。根据 Hartl 的指南和我在其他地方读到的内容,我所有的多元化似乎都是正确的。
有谁知道为什么会出现名称错误?当它知道普通的关系无论如何都属于一个用户并且两者在不同的模型中时,为什么要初始化 User::Relationship?
感谢您的任何帮助,您可以提供!这一直让我发疯。