我试图将用户选择保存在cookie中,但我认为我做错了什么。
在我看来,这是链接
<%= link_to image_tag("venezuela.png", :height => '74', :width => '111'), {:controller => "landing", :action => "select_country", :country => "venezuela"}, :method => "get" %>
这是我的控制器的动作
def select_country
cookies.permanent[:country] = params[:country]
case params[:country]
when "venezuela"
redirect_to "google.co.ve"
end
end
当我单击链接时,会出现此错误:
Unknown action
The action 'show' could not be found for LandingController
并转到此网址
http://localhost:3000/landing/select_country?country=venezuela
提前感谢您的帮助。
看起来您遇到了路由问题。确保您没有一个路由,该路由假定所有指向/landing/:anything
的链接都用于show
操作,该路由将select_country
定义为该控制器上的操作。