我刚刚开始研究ROR。 我严格按照ROR官方文档制作博客应用程序。 它适用于CRDU。 现在我添加了Active Admin,它在删除时工作正常,但在创建/更新时会出现错误 引发ActiveModel :: ForbiddenAttributesError
def sanitize_for_mass_assignment(attributes)
if attributes.respond_to?(:permitted?) && !attributes.permitted?
**raise ActiveModel::ForbiddenAttributesError**
else
attributes
end
在Controller中,我使用以下代码:
def create
@article = Article.new(article_params)
if @article.save
redirect_to @article
else
render 'new'
end
end
def update
@article = Article.find(params[:id])
if @article.update(article_params)
redirect_to @article
else
render 'edit'
end
end
def destroy
@article = Article.find(params[:id])
@article.destroy
redirect_to articles_path
end
private
def article_params
params.require(:article).permit(:title, :text, :AuthorAge)
end
答案 0 :(得分:3)
我认为您没有在您的有效管理文件中添加permit_params
。
# app/admin/xyz.rb
permit_params :comma separated attributes.
查看this链接了解更多详情。