类 OpenStruct

公共类方法

json_create(object) 点击切换源代码

参见 as_json.

# File json/lib/json/add/ostruct.rb, line 10
def self.json_create(object)
  new(object['t'] || object[:t])
end

公共实例方法

as_json(*) 点击切换源代码

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

方法 OpenStruct#as_json 序列化 self,返回一个表示 self 的包含两个元素的哈希表。

require 'json/add/ostruct'
x = OpenStruct.new('name' => 'Rowdy', :age => nil).as_json
# => {"json_class"=>"OpenStruct", "t"=>{:name=>'Rowdy', :age=>nil}}

方法 JSON.create 反序列化这样的哈希表,返回一个 OpenStruct 对象。

OpenStruct.json_create(x)
# => #<OpenStruct name='Rowdy', age=nil>
# File json/lib/json/add/ostruct.rb, line 30
def as_json(*)
  klass = self.class.name
  klass.to_s.empty? and raise JSON::JSONError, "Only named structs are supported!"
  {
    JSON.create_id => klass,
    't'            => table,
  }
end
to_json(*args) 点击切换源代码

返回一个表示 selfJSON 字符串。

require 'json/add/ostruct'
puts OpenStruct.new('name' => 'Rowdy', :age => nil).to_json

输出

{"json_class":"OpenStruct","t":{'name':'Rowdy',"age":null}}
# File json/lib/json/add/ostruct.rb, line 48
def to_json(*args)
  as_json.to_json(*args)
end