gpt4 book ai didi

ruby-on-rails - 事件管理员的 ForbiddenAttributesError

转载 作者:行者123 更新时间:2023-12-04 05:46:35 30 4
gpt4 key购买 nike

我刚刚开始研究 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

最佳答案

我想你没有添加 permit_params在您的事件管理文件中。

# app/admin/xyz.rb
permit_params :comma separated attributes.

调查 this链接了解更多详情。

关于ruby-on-rails - 事件管理员的 ForbiddenAttributesError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34395321/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com