我试图验证来自的一些用户输入。特别是我试图验证来自date_select
和time_select
的输入。我处理输入如下:
视图的输入标签:
<%= date_select :date, 'date', use_short_month: true %>
<%= time_select :Starttime , 'Starttime', default: Time.now, minute_step: 30,:ignore_date => true %>
将输入转换为Time-Object(在Controller中):
@Start = Time.new(date['date(1i)'].to_i, date['date(2i)'].to_i, date['date(3i)'].to_i, t_start["Starttime(4i)"].to_i, t_start["Starttime(5i)"].to_i)
如果我在视图中显示@Start
一切正常! 2013-08-18 16:00:00 +0200
现在我尝试检查有效输入的时间/日期。因此我在控制器中实现了这个功能:
def check_date
if @Start < Time.now
flash[:notice ]= "Booking has to be in the future!"
return false
else
return true
end
end
但它不起作用。 ERR_MSG。 undefined method '<' for nil:NilClass
出现了。我不知道为什么。 Time.now
和@Start
的视图输出相同。
我还尝试使用DateTime-object而不是Time-object,但会出现相同的错误。有什么想法吗?
编辑:
指数行动:
def index
t_start= params[:Starttime]
date= params[:date]
if t_start && date
@Start = Time.new(date['date(1i)'].to_i, date['date(2i)'].to_i, date['date(3i)'].to_i, t_start["Starttime(4i)"].to_i, t_start["Starttime(5i)"].to_i)
end
check_date
@tables = Table.search(params[:search])
end
由于
答案 0 :(得分:0)
我自己发现了错误...方法调用必须在if查询中,否则@Start没有值。
由于