根据我目前的逻辑,我很好奇当闰年会发生什么,并且有没有办法让这个更加强大以正确处理闰年?我担心我要么结束一天完全错过的日子,要么结束一天的重复.
task :generate_timeslots => :environment do startDate = Time.Now.to_date + 2.years endDate = Time.Now.to_date + 2.years startDate.upto(endDate).each do |d| 5.times do timeslot = Timeslot.create timeslot.location_ID = 1 timeslot.timeslot = "#{d} 09:00:00" timeslot.save timeslot = Timeslot.create timeslot.location_ID = 1 timeslot.timeslot = "#{d} 11:00:00" timeslot.save timeslot = Timeslot.create timeslot.location_ID = 1 timeslot.timeslot = "#{d} 13:00:00" timeslot.save timeslot = Timeslot.create timeslot.location_ID = 1 timeslot.timeslot = "#{d} 15:00:00" timeslot.save end endend解决方法 答案是,如果“从现在起两年后”包括跨越闰年的第29天,那么“备用”日将包含在该备份中以计入日历中2月29日的“额外”日. 总结
以上是内存溢出为你收集整理的ruby-on-rails – Rails cron作业每天运行2年后创建数据库记录.如何解释闰年?全部内容,希望文章能够帮你解决ruby-on-rails – Rails cron作业每天运行2年后创建数据库记录.如何解释闰年?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)