【问题标题】:Associate user_id to the comment model?将 user_id 关联到评论模型?
【发布时间】:2015-05-18 09:41:31
【问题描述】:

我使用 devise 进行身份验证,我想将 user_id 关联到评论模型。当我将 user_id 作为参数发送时它可以工作,但我想将当前登录用户的 user_id 自动设置为每个评论。我该怎么做?

#model/post.rb

class Post < ActiveRecord::Base
  has_many :comments
  belongs_to :category
end

#model/comment.rb

class Comment < ActiveRecord::Base

  belongs_to :post
end

#model/category.rb
   has_many :posts
#controllers/comments_controller

class CommentsController < ApplicationController
    before_action :set_comment, only: [:show, :edit, :update, :destroy]
    before_action :authenticate_user!


# GET /comments
# GET /comments.json
def index
  @comments = Comment.all
end

# GET /comments/1
# GET /comments/1.json
def show
end

# GET /comments/new
def new
  @comment = Comment.new
end

# GET /comments/1/edit
def edit
end

# POST /comments
# POST /comments.json
def create
  @comment = Comment.new(comment_params)

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

# PATCH/PUT /comments/1
# PATCH/PUT /comments/1.json
def update
  respond_to do |format|
    if @comment.update(comment_params)
      format.html { redirect_to @comment, notice: 'comment was successfully updated.' }
      format.json { render :show, status: :ok, location: @comment }
    else
      format.html { render :edit }
      format.json { render json: @comment.errors, status: :unprocessable_entity }
    end
  end
end

# DELETE /comments/1
# DELETE /comments/1.json
def destroy
  @comment.destroy
   respond_to do |format|
    format.html { redirect_to comments_url, notice: 'comment was successfully destroyed.' }
     format.json { head :no_content }
  end
end

private
  # Use callbacks to share common setup or constraints between actions.
  def set_comment
    @comment = Comment.find(params[:id])
  end

  # Never trust parameters from the scary internet, only allow the white list through.
  def comment_params
    params.require(:comment).permit(:rating, :comment, :post_id, :user_id)
  end
 end

【问题讨论】:

  • @comment.user = current_user

标签: ruby-on-rails activerecord devise


【解决方案1】:

使用关联user has_many comments and comments belongs_to user

def new @comment = current_user.comments.build end

def create @comment = current_user.comments.build(comment_params) end

【讨论】:

    【解决方案2】:

    如果你有taken the correct steps to setup Devise:

    @comment.user = current_user
    

    【讨论】:

      猜你喜欢
      • 2012-03-13
      • 2018-08-17
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多