2015-12-21 94 views
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 

回答

2

我想你並沒有在你的活動管理文件中加入permit_params

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

查看this鏈接瞭解更多詳情。

+0

謝謝迪帕克 它的工作 –