我已经在这个工作了几个小时而且卡住了,所以
如何使用数据库,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_accessible
为ZigZagRotation
,一旦选中,我希望将值存储在:id
中。
答案 0 :(得分:1)
我假设你正在使用两个不同的相关模型(例如ZigZagRotation
和AnotherModel
)。
如果要显示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 我希望它有所帮助...