Ruby on Rails - 将选择保存在 Cookie 中



我试图将用户选择保存在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定义为该控制器上的操作。

相关内容

  • 没有找到相关文章

最新更新