简体   繁体   中英

uninitialized constant User::Post (NameError)

I have the following problem, In UserController#show there has to be a list of posts, but it throws an error as shown in the screen shot: 用户的屏幕截图页面

The part of the code which is responsible to show user posts (show.html.erb)

<div class="span8">
<% if @user.posts.any? %>
  <h3>Работы (<%= @user.posts.count %>)</h3>
  <ol class="posts">
    <%= render @posts %>
  </ol>
  <%= will_paginate @posts %>
<% end %>
</div>

posts.rb:

class Posts < ActiveRecord::Base
belongs_to :user
default_scope -> { order('created_at DESC') }
validates  :description, presence: true, lenght: { minimum: 6 }
validates  :user_id, presence: true
end

part of a code in user.rb

class User < ActiveRecord::Base
has_many :posts, dependent: :destroy

Your help, thanks in advance is very important.

Excuse for possible mistakes in the text

您应该以单数形式命名模型:

class Post < ActiveRecord::Base

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM