标签: ruby-on-rails ruby
如何验证给定日期
答案 0 :(得分:3)
从params准备一个时间对象,只需从Time.now
t1 = Time.new(params[:date]) if t1 > Time.now # your code end