這裏很小的問題。簡單導軌按鈕問題
我想製作一個類似digg的網站,當他們點擊一個按鈕時,我想要一個櫃檯上去,就像在digg中一樣。所以我做:
<%=button_to("vote", :action => "vote")%>
,然後在我的控制器我做了一個動作:
def vote
@article = Article.find(params[:id])
@article.votes = @article.votes + 1
respond_to do |format|
format.html { redirect_to(@article.company) }
end
end
當我這樣做,你我的錯誤:
No route matches {:action=>"agree", :controller=>"companies"}
我該怎麼辦?
的routes.rb中和控制器和視圖中的文件名會在這裏幫助。 – natedavisolds