将参数从选择框传递到控制器
这是我的观点:
<%= 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以做如下的事情。
查看代码
读取mycontroller.rb中选定的值
you can do something like below.
view code
read the selected value in mycontroller.rb