在Rails的4.1.1版本的應用程序中,我有以下的articles_controller創建方法:在Rails 4.2中使用redirect_to時,爲什麼會有錯誤的參數錯誤?
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以下錯誤帳戶時重定向嘗試後:
wrong number of arguments (2 for 1)
爲什麼會發生此錯誤,以及如何解決?
我確實遇到了此最近的4.2升級後,但我不使用turbolinks。 – maxhs