我昨晚开始玩 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 中的其他一些变化?