gpt4 book ai didi

json - 如何使用包含已编码值的 Encodable 在 Swift 中对结构进行编码

转载 作者:行者123 更新时间:2023-12-04 21:01:48 26 4
gpt4 key购买 nike

想象一个如下的数据结构,在 contents 中包含一个值那是一个已经编码的 JSON 片段。

let partial = """
{ "foo": "Foo", "bar": 1 }
"""

struct Document {
let contents: String
let other: [String: Int]
}

let doc = Document(contents: partial, other: ["foo": 1])

期望输出

组合数据结构应使用 contents按原样编码 other .
{
"contents": { "foo": "Foo", "bar": 1 },
"other": { "foo": 1 }
}

使用 Encodable Encodable的以下实现编码 Document作为 JSON,但它也重新编码 contents成一个字符串,这意味着它用引号括起来并包含所有 "引号转义为 \" .

extension Document : Encodable {
enum CodingKeys : String, CodingKey {
case contents
case other
}

func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)

try container.encode(contents, forKey: .contents)
try container.encode(other, forKey: .other)
}
}

输出
{
"contents": "{\"foo\": \"Foo\", \"bar\": 1}",
"other": { "foo": 1 }
}

怎么可以 encode刚通过 contents原样?

最佳答案

我同意艾哈迈德的基本方法,但我假设你需要一些更有活力的东西。在这种情况下,您应该明确 content不是“字符串”。它是 JSON。因此,您可以使用 JSON type 将其存储为 JSON (此处简化,有关功能更丰富的版本,请参阅要点):

enum JSON: Codable {
struct Key: CodingKey, Hashable, CustomStringConvertible {
var description: String {
return stringValue
}

let stringValue: String
init(_ string: String) { self.stringValue = string }
init?(stringValue: String) { self.init(stringValue) }
var intValue: Int? { return nil }
init?(intValue: Int) { return nil }
}

case string(String)
case number(Double) // FIXME: Split Int and Double
case object([Key: JSON])
case array([JSON])
case bool(Bool)
case null

init(from decoder: Decoder) throws {
if let string = try? decoder.singleValueContainer().decode(String.self) { self = .string(string) }
else if let number = try? decoder.singleValueContainer().decode(Double.self) { self = .number(number) }
else if let object = try? decoder.container(keyedBy: Key.self) {
var result: [Key: JSON] = [:]
for key in object.allKeys {
result[key] = (try? object.decode(JSON.self, forKey: key)) ?? .null
}
self = .object(result)
}
else if var array = try? decoder.unkeyedContainer() {
var result: [JSON] = []
for _ in 0..<(array.count ?? 0) {
result.append(try array.decode(JSON.self))
}
self = .array(result)
}
else if let bool = try? decoder.singleValueContainer().decode(Bool.self) { self = .bool(bool) }
else if let isNull = try? decoder.singleValueContainer().decodeNil(), isNull { self = .null }
else { throw DecodingError.dataCorrupted(DecodingError.Context(codingPath: [],
debugDescription: "Unknown JSON type")) }
}

func encode(to encoder: Encoder) throws {
switch self {
case .string(let string):
var container = encoder.singleValueContainer()
try container.encode(string)
case .number(let number):
var container = encoder.singleValueContainer()
try container.encode(number)
case .bool(let bool):
var container = encoder.singleValueContainer()
try container.encode(bool)
case .object(let object):
var container = encoder.container(keyedBy: Key.self)
for (key, value) in object {
try container.encode(value, forKey: key)
}
case .array(let array):
var container = encoder.unkeyedContainer()
for value in array {
try container.encode(value)
}
case .null:
var container = encoder.singleValueContainer()
try container.encodeNil()
}
}
}

有了它,您可以重新定义文档以保存 JSON:
struct Document: Codable {
let contents: JSON
let other: [String: Int]
}

如果您愿意,可以从字符串解码该 JSON:
let doc = Document(contents:
try! JSONDecoder().decode(JSON.self, from: Data(partial.utf8)),
other: ["foo": 1])

有了这个,默认 JSONEncoder()是您获得所描述的输出所需的全部内容。

关于json - 如何使用包含已编码值的 Encodable 在 Swift 中对结构进行编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58175721/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com