我使用新的 Codable 协议将结构转换为 JSON,然后转换为字典以进行测试。问题是结构中的字典变量没有被转换回来并保持不变Any
而不是[Int: String]
struct Person: Codable {
var name: String?
var history: [Int: String]
init() {
self.name = "Name"
history = [0: "Test"]
}
}
let person = Person()
let jsonData = try JSONEncoder().encode(person)
let result = try JSONSerialization.jsonObject(with: jsonData, options: [])
let dictionary = result as? [String: Any]
print(dictionary)
这给了我以下结果
Optional(["history": {
0 = Test;
}, "name": Name])
当我期望
Optional(["history":[0: "Test"]], "name": "Test"])
我将不胜感激任何解释为什么会发生这种情况,或者更好的是如何基本上进行深度 JSON 序列化的解决方案。
我正在添加一个展示问题的游乐场: https ://www.dropbox.com/s/igpntk7az0hevze/JSONSerialisation.playground.zip