2013-10-08 79 views
0

我有一個選擇類型和3個固定選項作爲時鐘類型。我無法弄清楚如何讓clocktype(在我的組模型中)正常工作。在Rails 4中爲@group選擇標籤

在我的HTML中,它顯示的選擇名稱爲clocktype。而不是group[clocktype]

這裏是我的形式:

<%= form_for(@group) do |f| %> 
    <% if @group.errors.any? %> 
    <div id="error_explanation"> 
     <h2><%= pluralize(@group.errors.count, "error") %> prohibited this group from being saved:</h2> 
    </div> 
    <% end %> 

    <div class="field"> 
    <%= f.label :name %><br> 
    <%= f.text_field :name %> 
    </div> 

    <%= select_tag(:clocktype, options_for_select([['one', 1], ['two', 2], ['three', 3]])) %> 

    <div class="actions"> 
    <%= f.submit %> 
    </div> 
<% end %> 

回答

1

你缺少f.在前面,即。 f.select。這會將選擇標籤與您創建的表單相關聯。單獨使用select_tag是針對與模型沒有明確關聯的通用形式。

+0

我試過了。與'f.select_tag'導致一個錯誤。使用'f.select'。訣竅了。謝謝! – CaptainCarl