在Rails 4.1.1版本的应用程序中,我在articles_controller中有以下create方法:
def create @article = Article.new(article_params) authorize @article if @article.save flash[:notice] = "Successfully created article." redirect_to edit_article_path(@article) else render :new end end
但是,当尝试重定向时,更新到Rails 4.2后出现以下错误帐号:
参数错误数(2为1)