我想创建一个查询,它将返回开始时间在“现在”之前和结束时间在“现在”之后的所有警报,我只关心它是一天中的什么时间,而不是它的日期。
我原以为这会起作用
Alert.find(:all, :conditions => [" ? between ? AND ?", Time.now, :start, :end])
但是它不是因为这个查询本身与日历日期有关,而不仅仅是一天中的时间。
我找到了“.to_s(:time)”,但是当我添加它时,我得到了一个错误。
Alert.find(:all, :conditions => [" ? between ? AND ?", Time.now.to_s(:time), :start.to_s(:time), :end.to_s(:time)])
Alert.find(:all, :conditions => [" ? between ? AND ?", Time.now.to_s(:time), :start.to_s(:time), :end.to_s(:time)])
ArgumentError: wrong number of arguments(1 for 0)
from (irb):48:in `to_s'
from (irb):48
from /home/chris/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.3/lib/rails/commands/console.rb:47:in `start'
from /home/chris/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.3/lib/rails/commands/console.rb:8:in `start'
from /home/chris/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.3/lib/rails/commands.rb:41:in `'
from script/rails:6:in `require'
from script/rails:6:in `'
无论开始和结束时间的日历日期如何,如何根据现在在警报的开始时间和结束时间之间找到所有当前处于活动状态的警报?我目前没有考虑时区,但将来会考虑。