3

我正在尝试使用 ice_cube 和 recurring_select gems 创建重复事件。

这是我的 _form.html.erb 代码:

<%= simple_form_for(@event) do |f| %>
  <div class="form-inputs">
    <%= f.select_recurring :day, [IceCube::Rule.daily]  %>
    <%= f.input :start_time %>
    <%= f.input :end_time %>
  </div>
  <div class="form-actions">
    <%= f.button :submit %>
  </div>
<% end %>

在我的控制器中,我有(除其他外):

def new
   @event = Event.new
end

def create
  @event = Event.new(event_params)
  respond_to do |format|
    if @event.save
      format.html { redirect_to @event, notice: 'Event was successfully created.' }
      format.json { render :show, status: :created, location: @event }
    else
      format.html { render :new }
      format.json { render json: @event.errors, status: :unprocessable_entity }
    end
  end
end

def event_params
  params.require(:event).permit(:day, :start_time, :end_time, :reserved)
end

如您所见,我想为一周中的每一天创建相同的事件,但实际上,如果我提交此表单,我的 :day 列仍然为空。

你能提供一些反馈吗?我不知道有什么问题

4

1 回答 1

1

escape_params似乎错了,应该是event_params您在update操作中使用的:

private
  def event_params
    params.require(:event).permit(:day, :start_time, :end_time, :reserved)
  end

更新:

查看recurring_selectgem 后,它发送到服务器的数据是这样的:

event[:day]: {"interval":1,"until":null,"count":null,"validations":null,"rule_type":"IceCube::DailyRule"}

因此,它不是一个可以存储在单个字段中的简单单值参数。

您在这里有两个选择,要么序列化此值并将其存储在单个字段中,要么为数据库中的每个参数创建单独的字段。

而且由于您在day字段中的数据是散列,permit因此函数根本无法处理它。您可以在Rails 问题跟踪器上查看更多信息。

于 2015-08-02T18:34:53.157 回答