我有一个约会表,可以节省2次。开始和结束。我希望以15分钟的步骤显示所有约会。例如上午10点/上午11点,现在在我的视图中显示10.15,10.30,10.45!谢谢!
-@appointment.each do |form|
=form.date
=form.start_time
=form.end_time
答案 0 :(得分:14)
我有一个单行,但这是你真正想要的吗?并且希望这两个日期之间的差异不是太大,下面的代码效率不高。
(Time.now.to_i..1.hour.from_now.to_i).to_a.in_groups_of(15.minutes).collect(&:first).collect { |t| Time.at(t) }
更好的解决方案:
# Your variables
time_start = Time.now
time_end = time_start + 1.hour
[time_start].tap { |array| array << array.last + 15.minutes while array.last < time_end }
我在Ruby的to
实例方法中添加了Time
:
class Time
def to(to, step = 15.minutes)
[self].tap { |array| array << array.last + step while array.last < to }
end
end
所以你最终会得到这样的代码:
time_start.to(time_end)
所有三个解决方案都将以包含Time
个步骤对象的数组结束。
=> [2011-07-22 17:11:11 +0200, 2011-07-22 17:26:11 +0200, 2011-07-22 17:41:11 +0200, 2011-07-22 17:56:11 +0200, 2011-07-22 18:11:11 +0200]
答案 1 :(得分:9)
你只需要传递选项:minute_step =&gt; 15 到输入字段