将参数从选择框传递到控制器

发布于 2024-12-26 05:44:32 字数 382 浏览 1 评论 0原文

这是我的观点:

 <%= form_tag({ :action => "display"}, :method => "get") do %>
   <%= select(:music, :type, MusType::TYPES,  {:include_blank => true}) %>

这是我在模型中的数组常量:

  class MusType < ActiveRecord::Base
      TYPES = ['Jazz','Rock','Blues']
  end 

我的选择菜单从数组中提取值。按下提交按钮后,如何将选定的值作为参数传递到控制器中?

Here is my view:

 <%= form_tag({ :action => "display"}, :method => "get") do %>
   <%= select(:music, :type, MusType::TYPES,  {:include_blank => true}) %>

Here is my array constant in the model:

  class MusType < ActiveRecord::Base
      TYPES = ['Jazz','Rock','Blues']
  end 

My select menu draws values out of an array. How do I pass the selected value into the controller as a parameter after the submit button is pressed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绿萝 2025-01-02 05:44:32

你可以做如下的事情。
查看代码

<%= form_tag(:url => {:controller => "mycontroller" :action => "display"}, :method => "get") do %>
   <%= select_tag(:music, :type, MusType::TYPES,  {:include_blank => true}) %>
   <%= submit_tag "Search", :id => 'search' %>
<% end %>

读取mycontroller.rb中选定的值

def display
   value = params[:music][:type]
   // do something with value
end

you can do something like below.
view code

<%= form_tag(:url => {:controller => "mycontroller" :action => "display"}, :method => "get") do %>
   <%= select_tag(:music, :type, MusType::TYPES,  {:include_blank => true}) %>
   <%= submit_tag "Search", :id => 'search' %>
<% end %>

read the selected value in mycontroller.rb

def display
   value = params[:music][:type]
   // do something with value
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文