类 Time
公共类方法
json_create(object) 点击切换源代码
参见 as_json
.
# File json/lib/json/add/time.rb, line 9 def self.json_create(object) if usec = object.delete('u') # used to be tv_usec -> tv_nsec object['n'] = usec * 1000 end if method_defined?(:tv_nsec) at(object['s'], Rational(object['n'], 1000)) else at(object['s'], object['n'] / 1000) end end
公共实例方法
as_json(*) 点击切换源代码
方法 Time#as_json
和 Time.json_create
可用于序列化和反序列化 Time 对象;参见 Marshal。
方法 Time#as_json
序列化 self
,返回一个表示 self
的 2 元素哈希。
require 'json/add/time' x = Time.now.as_json # => {"json_class"=>"Time", "s"=>1700931656, "n"=>472846644}
方法 JSON.create
反序列化这样的哈希,返回一个 Time 对象。
Time.json_create(x) # => 2023-11-25 11:00:56.472846644 -0600
# File json/lib/json/add/time.rb, line 36 def as_json(*) nanoseconds = [ tv_usec * 1000 ] respond_to?(:tv_nsec) and nanoseconds << tv_nsec nanoseconds = nanoseconds.max { JSON.create_id => self.class.name, 's' => tv_sec, 'n' => nanoseconds, } end
to_json(*args) 点击切换源代码
返回一个表示 self
的 JSON
字符串。
require 'json/add/time' puts Time.now.to_json
输出
{"json_class":"Time","s":1700931678,"n":980650786}
# File json/lib/json/add/time.rb, line 56 def to_json(*args) as_json.to_json(*args) end