在Rails中生成随机日期时间,可以使用以下方法:
# 生成随机日期
random_date = Faker::Date.between(from: Date.today, to: 1.year.from_now)
# 生成随机时间
random_time = Faker::Time.between_dates(from: Date.today, to: 1.year.from_now, period: :all)
# 生成随机分钟属于(00, 30)范围的时间
random_time = random_time.change(min: [0, 30].sample)
解释:
Faker::Date.between
方法生成随机日期,from
参数指定起始日期为今天,to
参数指定结束日期为一年后。Faker::Time.between_dates
方法生成随机时间,from
和to
参数同样指定起始日期和结束日期。change
方法修改随机时间的分钟部分,min
参数传入一个数组[0, 30]
,使用sample
方法从数组中随机选择一个值作为分钟。这样,我们就可以在Rails中生成随机日期时间,其中分钟属于(00, 30)范围。请注意,以上代码中使用了Faker gem来生成随机数据,你可以根据自己的需求选择其他方法或gem来实现相同的功能。
领取专属 10元无门槛券
手把手带您无忧上云