早些时候我正在使用此代码
<%= select "selected_payment", "id", @shifts.map {|u| [' ' +u.start_time.strftime("%I:%M %p") + '-' + u.end_time.strftime("%I:%M %p")+' ',u.id]} %> to make a dropdown.
现在我必须对 collection_select 做同样的事情。但我不知道该怎么做。它将类似于下面给出的:
<%= f.collection_select :shift_id, @shifts,:id, :start_time, :prompt => true %>
我什至无法格式化日期并同时使用两个值。请帮助,在此先感谢