Rubyの現在のTime.nowに2週間を追加するにはどうすればよいですか? DataMapperを使用する小さなSinatraプロジェクトがあり、保存する前に、現在の時間と2週間が入力されたフィールドがありますが、必要に応じて機能していません。どんな助けも大歓迎です!次のエラーが表示されます。
NoMethodError at /
undefined method `weeks' for 2:Fixnum
モデルのコードは次のとおりです。
class Job
include DataMapper::Resource
property :id, Serial
property :position, String
property :location, String
property :email, String
property :phone, String
property :description, Text
property :expires_on, Date
property :status, Boolean
property :created_on, DateTime
property :updated_at, DateTime
before :save do
t = Time.now
self.expires_on = t + 2.week
self.status = '0'
end
end
プレーンなRubyには、このようなNiceヘルパーはありません。秒を追加できます。
Time.now + (2*7*24*60*60)
しかし、幸いなことに、多くの日付ヘルパーライブラリがあります(または独自にビルドします;))
Ruby Date
クラスには methods があり、Timeの秒に加えて日と月を追加します。例:
require 'date'
t = DateTime.now
puts t # => 2011-05-06T11:42:26+03:00
# Add 14 days
puts t + 14 # => 2011-05-20T11:42:26+03:00
# Add 2 months
puts t >> 2 # => 2011-07-06T11:42:26+03:00
# And if needed, make Time object out of it
(t + 14).to_time # => 2011-05-20 11:42:26 +0300
require 'rubygems'
require 'active_support/core_ext/numeric/time'
self.expires = 2.weeks.from_now
日付間の計算には秒を使用する必要がありますが、Timeクラスをヘルパーとして使用して、日付部分の要素から秒を取得できます。
Time.now + 2.week.to_i
編集:@iainが述べたように、あなたは2.week.to_i
、この依存関係を持つことができない(またはしたくない)場合は、常に+
演算子でTime
インスタンスに秒を追加します( time + numeric→timedocs here )
Time.now + (60 * 60 * 24 * 7 * 2)
おもう week/weeks
は active support numeric 拡張で定義されています
$ Ruby -e 'p Time.now'
2011-05-05 22:27:04 -0400
$ Ruby -r active_support/core_ext/numeric -e 'p Time.now + 2.weeks'
2011-05-19 22:27:07 -0400
<%current_time=Time.now
current_time_s=current_time.strftime('%Y-%m-%d %H:%M:%S').to_s #show currrent date time
current_time= Time.now + (60 * 60 * 24 * 7 * 250)
current_time_e=current_time.strftime('%Y-%m-%d %H:%M:%S').to_s #show datetime after week
%>
# you have NoMethod Error undefined method
require 'active_support/all'
# Tue, 28 Nov 2017 11:46:37 +0900
Time.now + 2.weeks
# Tue, 28 Nov 2017 11:46:37 +0900
Time.now + 2.week
# Tue Nov 28 11:48:24 +0900 2017
2.weeks.from_now
私も好きです:)
def minor?(dob)
n = DateTime.now
a = DateTime.parse(dob)
a >> 12*18 > n
end
うるう年と秒について考える手間を省きます。そのまま使用できます。