作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我如何能够在一个时间表中规定餐厅的营业时间?
周一至周五 8-16 日非常简单:
schedule = Schedule.new(Time.parse(Date.yesterday.to_s + ' 8:00'), :duration => 60*60*8)
(...)
schedule.add_recurrence_rule Rule.daily.day(:wednesday)
schedule.add_recurrence_rule Rule.daily.day(:thursday)
(...)
schedule.occurring_at?(Time.now)
问题是当试图统治这样的事情时:周一 9-17,Tu 16-01(次日午夜后)等等
我能用那个插件做到这一点吗?
最佳答案
刚收到一位 Ice_Cube 作者的电子邮件,回答了我的问题。可能有用:
Unfortunately we strive to maintain backwards compatibility with the iCalendar standard - so you can't change durations on a per-rule basis. If you want to accomplish something like the above, people either use multiple schedules, or store the durations separately (the latter is highly preferred)
关于ruby-on-rails - 冰立方的开放时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13496841/
我是一名优秀的程序员,十分优秀!