當我創建我的文章,我得到這個錯誤? article_pathArticlesController中的NameError#爲#<ArticlesController創建未定義的局部變量或方法`article_params':你的意思是?</p> <p>錯誤:NameError在ArticlesController#創建 未定義的局部變量或方法`article_params'爲#你的意思是article_path
我的代碼:
class ArticlesController < ApplicationController
def new
@article = Article.new
end
def create
@article = Article.new(article_params)
if @article.save
flash[:notice] = "Article was submitted succsefully"
redirect_to (@article)
else
render :new
end
private
def article_params
params.require(:article).permit(:title, :description)
end
end
end
,但我得到這個錯誤 –
未知的動作 行動「秀」不能爲ArticlesController –
找到我的回答只是增加了如何在文章控制器添加show動作 – widjajayd