如何显示下拉列表选项/选择菜单

时间:2012-06-20 22:34:43

标签: ruby-on-rails ruby-on-rails-3 forms

我已经在这个工作了几个小时而且卡住了,所以 如何使用数据库,db使用模型ZigZagRotation

进行菜单选择
<%= form_for([@user, @user.calories_journals.build]) do |f| %>
  <%= render 'shared/error_messages', object: f.object %>
  <%= f.label :cj_date, "Date Begins:" %>
  <%= f.text_field :cj_date %>
  <%= f.label :no_of_cycles, "Number of Cycles:" %>
  <%= f.text_field :no_of_cycles %>      
  <%= f.label :zig_zag_type, "Zig Zag Rotation Type:" %>
  <%= f.select :zig_zag_type, ZigZagRotation.all.collect {|z| [z.title, z.id ] } %> 
  <%= f.submit "Generate Calories Journals", class: "btn btn-large btn-primary" %>
<% end %>

下面的行显示菜单选择框中的空白详细信息,而不是填充列表。

<%= f.select :zig_zag_type, ZigZagRotation.all.collect {|z| [z.title, z.id ] } %> 
:zig_zag_type模型下的attr_accessibleZigZagRotation,一旦选中,我希望将值存储在:id中。

1 个答案:

答案 0 :(得分:1)

我假设你正在使用两个不同的相关模型(例如ZigZagRotationAnotherModel)。

如果要显示zig_zag_type属性并将其id保存在AnotherModel外键(例如zig_zag_id)中,创建它们之间的关系,则可以做类似下面的事情:

<%= f.collection_select(:zig_zag_id, ZigZagRotation.all, :id, :zig_zag_type , {:include_blank => 'Select Type'} ) %>

您可以找到更多信息here 我希望它有所帮助...