4
我剛剛開始研究ROR。 我嚴格遵循ROR官方文檔製作了博客應用程序。 它適用於CRDU。 現在我添加的活性管理員給它,它適用於精細刪除但給同時creatiing /更新重點 加載ActiveModel養錯誤:: ForbiddenAttributesErrorForbiddenAttributesError with Active Admin
def sanitize_for_mass_assignment(attributes)
if attributes.respond_to?(:permitted?) && !attributes.permitted?
**raise ActiveModel::ForbiddenAttributesError**
else
attributes
end
在控制器中,我使用下面的代碼:
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
謝謝迪帕克 它的工作 –