我正在使用带有 Ice Cube 的 Schedule Attributes 来安排一些带有表单的事件,我需要在编辑中填充表单,如下例所示:
<%= form_for(@event) do |f| %>
[...]
<%= f.fields_for :schedule_attributes do |schedule| %>
Start Date <%= schedule.datetime_select :start_date %><br>
<% end %>
[...]
<% end %>
有人可以告诉我如何进行吗?
谢谢