Creating a simple drop-down menu in Rails

一曲冷凌霜 提交于 2019-12-03 21:45:46
Pan Thomakos

I think your code can be simplified to work this way:

<% form_for @foo, :url => {:action => 'bar'} do |f| %>
  <%= f.select :range, FooModel::MONTHS %>
  <%= submit_tag "Submit", :disable_with => "Submitting..." %>
<% end %>

Using collection_select for simple cases such as this one is probably overkill. f.select should be sufficient.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!