我试图验证来自 from 的一些用户输入。特别是我试图验证来自date_select
and的输入time_select
。我处理输入如下:
视图的输入标签:
<%= date_select :date, 'date', use_short_month: true %>
<%= time_select :Starttime , 'Starttime', default: Time.now, minute_step: 30,:ignore_date => true %>
将输入转换为时间对象(在控制器中):
@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
谢谢