类 DateTime

公共类方法

json_create(object) 点击切换源代码

参见 as_json.

# File json/lib/json/add/date_time.rb, line 10
def self.json_create(object)
  args = object.values_at('y', 'm', 'd', 'H', 'M', 'S')
  of_a, of_b = object['of'].split('/')
  if of_b and of_b != '0'
    args << Rational(of_a.to_i, of_b.to_i)
  else
    args << of_a
  end
  args << object['sg']
  civil(*args)
end

公共实例方法

as_json(*) 点击切换源代码

方法 DateTime#as_jsonDateTime.json_create 可用于序列化和反序列化 DateTime 对象;参见 Marshal。

方法 DateTime#as_json 序列化 self,返回一个表示 self 的 2 元素哈希。

require 'json/add/datetime'
x = DateTime.now.as_json
# => {"json_class"=>"DateTime", "y"=>2023, "m"=>11, "d"=>21, "sg"=>2299161.0}

方法 JSON.create 反序列化此类哈希,返回一个 DateTime 对象。

DateTime.json_create(x) # BUG? Raises Date::Error "invalid date"
# File json/lib/json/add/date_time.rb, line 39
def as_json(*)
  {
    JSON.create_id => self.class.name,
    'y' => year,
    'm' => month,
    'd' => day,
    'H' => hour,
    'M' => min,
    'S' => sec,
    'of' => offset.to_s,
    'sg' => start,
  }
end
to_json(*args) 点击切换源代码

返回一个表示 selfJSON 字符串。

require 'json/add/datetime'
puts DateTime.now.to_json

输出

{"json_class":"DateTime","y":2023,"m":11,"d":21,"sg":2299161.0}
# File json/lib/json/add/date_time.rb, line 62
def to_json(*args)
  as_json.to_json(*args)
end