参数错误(ActiveModel :: ForbiddenAttributesError)

时间:2014-03-07 20:47:55

标签: ruby-on-rails ruby params

我在“CommentController #create”中收到“ActiveModel :: ForbiddenAttributesError”,其中包含“@comment = @ post.comments.build(params [:comment])”中的重点

def create
    @post = Post.find(params[:post_id])
    @comment = @post.comments.build(params[:comment])

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

在教程视频中,编码器将其放入并且工作正常但是当我发布它时会出现错误。我检查了代码,似乎没有看到什么错误。提前谢谢!

1 个答案:

答案 0 :(得分:2)

查看错误,我假设您必须使用Rails 4.在Rails 4中引入了强参数。请参阅此处的Strong Parameters参考。

替换

 @comment = @post.comments.build(params[:comment]) 

 @comment = @post.comments.build(comment_params) 

在控制器中添加一个私有方法,如下所示:

  def comment_params
    params.require(:comment).permit(:attr1, :attr2,...)
  end

,其中 :attr1,:attr2将是Comment模型的属性名称。