0

我正在通过 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?

感谢您的任何帮助,您可以提供!这一直让我发疯。

4

2 回答 2

0

固定的!结果我只需要摆脱关系模型中的“params:require”并将“relationships.find_by”更改为“Relationship.find_by”,以便初始化正确的东西。

于 2013-06-24T20:53:09.140 回答
0

看起来问题出在你的 relationship.rb 文件上。检查文件名并放置:app/models/relationship.rb。

错误表明您的 user.rb 类没有看到 relationship.rb

于 2013-06-21T19:08:24.833 回答