0

我有以下表格(截断)

    <%= form_for(daysevent, :html => { :class => "form-inline"} ) do |f| %>
    <fieldset>
    <div class="control-group">
        <%= f.label :start_date, :class => 'control-label' %>
        <div class="controls">
          <%= f.text_field :start_date, 'data-behavior' => 'datepicker1' %>
        </div>
      </div>
      <div class="control-group">
        <%= f.label :end_date, :class => 'control-label' %>
        <div class="controls">
          <%= f.text_field :end_date, 'data-behavior' => 'datepicker2' %>
        </div>
      </div>
    Locations for this date:<br/>
    <% daysevent.event.locations.each do |l|%>         
        <%= check_box_tag 'location_ids[]', l.id, true -%><%= h l.name -%><br/>    
    <% end %> 
    <%= f.submit 'Create Date' %>
    </fieldset>
    <% end %> 

我正在尝试在 ID 数组中获取位置复选框列表,但它不起作用,在我的创建方法中 return render :text => params[:days_event] 只是返回 start_date 和 end_date。我只做了几个月的rails,所以它可能很简单,但对他的赞赏都有帮助。

4

1 回答 1

1

您不是在 中发送复选框的值,params[:days_event]而是在params[:locations_ids]. 您可以检查调试输出rails server,您将看到已解析的params哈希。

如果您想发送它们,请将复选框更改为:

<%= check_box_tag "days_event[location_ids][]" .... %>
于 2012-09-11T22:41:37.447 回答