5

我有一个 OpenStruct 对象,需要转换为 JSON 数据。

样本哈希(来自 RSPEC 助手):

def test_order
 {
   "id": 505311428702,
   "email": "test@gmail.com",
   "closed_at": "",
   "discount_codes": {
      "id": 507328175,
      "text": "test"
   }
 }
end

我正在使用以下函数进行递归:

def to_recursive_ostruct(hash)
  OpenStruct.new(hash.each_with_object({}) do |(key, val), memo|
    memo[key] = val.is_a?(Hash) ? to_recursive_ostruct(val) : val
  end)
end

对于 ex to_recursive_ostruct(test_order),将返回:

<OpenStruct id=505311428702, email="test@gmail.com", closed_at="", ...>

转换后,使用OpenStructObject.marshal_dump

{
:id=>505311428702, :email=>"test@gmail.com", :closed_at=>"", 

discount_codes=>#<OpenStruct id=507328175, text= "test">}
}

OpenStructObject.marshal_dump在第一级为我提供了正确的数据,

我还希望嵌套数据被转换。

我真正需要的是:

{:id=>505311428702, :email=>"test@gmail.com", :closed_at=>"", :discount_codes=>{:id=>507328175, :text=> "test"} }

请帮助,提前谢谢。

4

5 回答 5

3

在@Andrey-Deineko、@owyongsk、@aldrien.h 所做的工作的基础上,这里是一个处理数组的转换器。虽然 OP 并没有特别关注这一点,但其他人可能会觉得它很有帮助。


def openstruct_to_h(object)
   object.to_h.transform_values do |value|
      value.is_a?(OpenStruct) ? openstruct_to_h(value) : value.is_a?(Array) ? value.map{|v| v.is_a?(String) ? v : openstruct_to_h(v) } : value
   end
end

# Example usage

open_struct_object = OpenStruct.new(paramtest: "ok", array_test: [OpenStruct.new(array_one: true), OpenStruct.new(array_two: false, nested_os: OpenStruct.new(works: 'maybe'))], os_test: OpenStruct.new(testy: "yup")) 

openstruct_to_h(open_struct_object)

=> {:paramtest=>"ok", :array_test=>[{:array_one=>true}, {:array_two=>false, :nested_os=>{:works=>"maybe"}}], :os_test=>{:testy=>"yup"}}
于 2020-07-08T21:39:45.270 回答
2

查看文档

您可以使用OpenStruct#marshal_dump

openstruct_object.marshal_dump

OpenStruct#to_h也可以:

openstruct_object.to_h

您可以将对象转换为散列,然后将散列转换为 JSON:

openstruct_object.to_h.to_json

但看起来你想要的是一个 Hash 对象,而不是 JSON 对象。

于 2018-08-22T06:45:06.380 回答
1

要将您的深度 openstruct 转换为哈希,您可以使用以下内容:

def deep_openstruct_to_hash(object)
  object.each_pair.with_object({}) do |(key, value), hash|
    hash[key] = value.is_a?(OpenStruct) ? deep_openstruct_to_hash(value) : value
  end
end

然后:

openstruct_object = to_recursive_ostruct(test_order)
#=> #<OpenStruct id=505311428702, email="test@gmail.com", closed_at="", discount_codes=#<OpenStruct id=507328175, text="test">>
deep_openstruct_to_hash(openstruct_object)
# {
#   :id=>505311428702,
#   :email=>"test@gmail.com",
#   :closed_at=>"",
#   :discount_codes=>{
#     :id=>507328175,
#     :text=>"test"
#   }
# }
于 2018-08-22T08:15:40.057 回答
1

在 Ruby 2.4+ 上,您可以transform_values在猴子补丁中与递归函数一起使用。

class OpenStruct
  def deep_to_h
    to_h.transform_values do |v|
      v.is_a?(OpenStruct) ? v.deep_to_h : v
    end
  end
end

或者如果你不想猴子补丁

def deep_to_h(obj)
  obj.to_h.transform_values do |v|
    v.is_a?(OpenStruct) ? deep_to_h(v) : v
  end
end
于 2019-06-13T13:44:14.747 回答
0

还要感谢这个要点:也可以转换散列数组。

def recursive_ostruct(object)
  case object
  when Hash
    hash = {}; object.each{|k,v| hash[k] = recursive_ostruct(v)}
    OpenStruct.new(hash)
  when Array
    object.map {|e| recursive_ostruct(e) }
  else
    object
  end
end
于 2018-08-24T06:53:17.080 回答