0

私は最初のプロジェクトとして、Rails でブログを作成しています。なんらかの理由で、コメント部分に多くの問題を抱えています。それは私が見落としている小さなものだと確信しています。

正しい投稿にコメントを表示できるようになりましたが、表示する人の名前を取得できません。comment.user.name を実行すると、このエラーが発生します

undefined method `name' for nil:NilClass

ただし、comment.user を実行すると、次のように表示#<User:0x466cd28>.されます。実行しようとするとエラーが発生します。<%=time_ago_in_words(comment.created_at) %>

undefined method `year' for nil:NilClass

ただし、エラーなしで comment.created_at を実行できます。

より簡単な場合は、github にあります: https://github.com/Mciocca/blog

投稿にレンダリングされているコメントを表示する部分は次のとおりです#view

 <% if @post.comments.any? %>
 <% @post.comments.each do |comment| %>
 <div class="comment-name">
 <%= comment.user %>  <%=comment.created_at%></div> 
 <div class='comment-content'>
<%= comment.comment %>
</div> 
<% end %>
<% else %>
<h3>Be the first to comment!</h3>
<% end %>

これがコメントモデルとコントローラーです(コメントはコメントの内容であり、命名の選択は不適切です)

class Comment < ActiveRecord::Base
attr_accessible :comment, :post_id
belongs_to :post
belongs_to :user

validates :comment, presence: true

end


class CommentsController < ApplicationController

      def create
        @comment = current_user.comments.build(params[:comment])
        if @comment.save
            redirect_to @comment.post
            else
                render '/blog'
            end
    end

def destroy
    @comment = Comment.find(params[:id])
    @comment.destroy
end

end

ここにユーザーモデルがあります

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

 has_many :comments
 has_and_belongs_to_many :posts

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

 validates_confirmation_of :password
 validates_presence_of :password, :on => :create
 validates_presence_of :email
 validates_uniqueness_of :email
 validates_presence_of :name

private

    def create_remember_token
        self.remember_token = SecureRandom.urlsafe_base64
    end


end

これがPostモデルとコントローラーです

class Post < ActiveRecord::Base
  attr_accessible :content, :preview, :title
  has_many :comments, dependent: :destroy, :order => "created_at DESC"



  validates :content, presence: true
  validates :title, presence: true
end



class PostsController < ApplicationController
  # GET /posts
  # GET /posts.json
  def index
    @posts = Post.all

    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @posts }
    end
  end

  # GET /posts/1
  # GET /posts/1.json
  def show
    @post = Post.find(params[:id])
    @comment = @post.comments.build

  end

  # GET /posts/new
  # GET /posts/new.json
  def new
    @post = Post.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @post }
    end
  end

  # GET /posts/1/edit
  def edit
    @post = Post.find(params[:id])
  end

  # POST /posts
  # POST /posts.json
  def create
    @post = Post.new(params[:post])

    respond_to do |format|
      if @post.save
        format.html { redirect_to @post, notice: 'Post was successfully created.' }
        format.json { render json: @post, status: :created, location: @post }
      else
        format.html { render action: "new" }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

  # PUT /posts/1
  # PUT /posts/1.json
  def update
    @post = Post.find(params[:id])

    respond_to do |format|
      if @post.update_attributes(params[:post])
        format.html { redirect_to @post, notice: 'Post was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /posts/1
  # DELETE /posts/1.json
  def destroy
    @post = Post.find(params[:id])
    @post.destroy

    respond_to do |format|
      format.html { redirect_to posts_url }
      format.json { head :no_content }
    end
  end
end

長文すみません!事前に助けてくれてありがとう!

4

1 に答える 1