2

我昨晚开始玩 Rails 4。我正在制作一个简单的博客类型应用程序来熟悉其中的一些变化。我有使用默认脚手架的帖子。

我决定在没有脚手架的情况下添加评论,当我尝试在帖子上保存评论时出现此错误:

ActiveModel::ForbiddenAttributesError in CommentsController#create

错误页面上的请求参数:

{"utf8"=>"✓",
 "authenticity_token"=>"jkald9....",
 "comment"=>{"commenter"=>"Sam",
 "body"=>"I love this post!"},
 "commit"=>"Create Comment",
 "post_id"=>"1"}

这是评论控制器的创建操作:

    class CommentsController < ApplicationController
        def create
            @post = post.find(params[:post_id])
            @comment = @post.comments.create(params[:comment])
            redirect_to post_path(@post)
        end

        private

        def comment_params
          params.require(:comment).permit(:commenter, :body, :post_id)
        end
    end

这是我评论的非常基本的迁移。

class CreateComments < ActiveRecord::Migration
  def change
    create_table :comments do |t|
      t.string :commenter
      t.text :body
      t.references :post, index: true

      t.timestamps
    end
  end
end

我对强类型参数做错了什么?或者也许我错过了 Rails 4 中的其他一些变化?

4

2 回答 2

4

有点疏忽,但我想我会回答这个问题,以防其他人正在努力将类似的 Rails 3 代码移植到 Rails 4。

您需要像这样将 comment_params 传递到质量分配中:

@comment = @post.comments.create(comment_params)
于 2013-06-18T22:16:23.057 回答
1

我通过编辑 comments_controller 创建函数来解决这个问题

def create
    @post = Post.find(params[:post_id])
    @comment = @post.comments.create(params[:comment].permit(:commenter, :body))
redirect_to post_path(@post)
end

注意

@comment = @post.comments.create(params[:comment].permit(:commenter, :body))

此致

于 2013-09-12T07:23:08.357 回答