我有以下表格(截断)
<%= 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,所以它可能很简单,但对他的赞赏都有帮助。