gem devise how to add comment created user email?
问题 I am using gem devise for creating users profile Each user can create a comment. I need to add the user name beside each comment something like this <%= @comment.user.name %> in user.rb has_many :comments, dependent: :destroy in comment.rb belongs_to :users in comment controller before_action :find_comment ,only:[:show,:update,:edit,:destroy] def new @user =User.find(params[:id]) @comment = @user.comments.build end def create @user =User.find(params[:id]) @comment = @user.comments.build