class 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
  at(object['s'], Rational(object['n'], 1000))
end

公共实例方法

as_json(*) 点击切换源代码

方法 Time#as_jsonTime.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 32
def as_json(*)
  {
    JSON.create_id => self.class.name,
    's'            => tv_sec,
    'n'            => tv_nsec,
  }
end
to_json(*args) 点击切换源代码

返回一个表示 selfJSON 字符串。

require 'json/add/time'
puts Time.now.to_json

输出

{"json_class":"Time","s":1700931678,"n":980650786}
# File json/lib/json/add/time.rb, line 49
def to_json(*args)
  as_json.to_json(*args)
end