0

コメントをユーザー投稿に追加できるように、ポリモーフィックなコメント システムが機能しています。ただし、ログインしているユーザー (コメント投稿者) をコメントに添付する方法がわかりません。

コメント_コントローラー.rb:

class CommentsController < ApplicationController
before_filter :authenticate_user!, :only => [:create, :destroy]

def index
  @commentable = find_commentable
  @comments = @commentable.comments
end

def new
    @commentable = find_commentable
end

def create
  @commentable = find_commentable
  @comment = @commentable.comments.build(params[:comment])
  if @comment.save
    flash[:notice] = "Successfully created comment."
    redirect_to get_master
  else
    render :action => 'new'
  end
end

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

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

protected

def find_commentable
  params.each do |name, value|
    if name =~ /(.+)_id$/
      return $1.classify.constantize.find(value)
    end
  end
  nil
end

def get_master
    @parent = @comment.commentable
    if @parent.respond_to?('commentable_type')
      @comment = @parent
      get_master
    else
      return @parent
    end
end
end
4

1 に答える 1

0

の前に追加するのと同じくらい簡単ではありませんsaveか?

@comment.commenter = current_user

ビューに追加することもできます。

f.hidden_field :commenter_id, value: current_user.id

ビューに設定したほうがいいと思います。

于 2013-01-17T02:17:19.373 に答える