我有以下代码来验证我的日期是否在将来:
validate :date_must_be_in_future
def date_must_be_in_future
if date_in_question < Date.today
errors.add(:date_in_question, "This should probably be in the future.")
end
end
它似乎正在工作,但它没有出现在 client_side_validation 中。有什么想法吗?