gpt4 book ai didi

swift4 - Swift 4 Decodable - 将 JSON 对象解码为 `Data`

转载 作者:行者123 更新时间:2023-12-03 14:39:35 25 4
gpt4 key购买 nike

我有以下数据结构:

{
"type": "foo"
"data": { /* foo object */ }
}

这是我的解码类:
final public class UntypedObject: Decodable {

public var data: Data

enum UntypedObjectKeys: CodingKey {
case data
}

required public init(from decoder: Decoder) throws {
let values = try decoder.container(keyedBy: UntypedObjectKeys.self)

self.data = try values.decode(Data.self, forKey: .data)
}
}

我正在获取一个此类对象的数组,这就是我解码它的方式:
let decoder = JSONDecoder()
let objectList = try decoder.decode([UntypedObject].self, from: data)

但是我在控制台中收到此错误:

typeMismatch(Swift.Array, Swift.DecodingError.Context(codingPath: [Foundation.(_JSONKey in _12768CA107A31EF2DCE034FD75B541C9)(stringValue: "Index 0", intValue: Optional(0)), Playground_Sources.UntypedObject.UntypedObjectKeys.data], debugDescription: "Expected to decode Array but found a dictionary instead.", underlyingError: nil))



所以问题是是否有可能将正确的 JSON 对象解码为 Data类型属性,如果是这样 - 我怎样才能做到这一点?

最佳答案

这对于 OP 来说可能为时已晚,但我遇到了一个需要解决方案的类似问题。
希望这对其他人有用。

对于我的问题,我想使用 Decodable解码我的 JSON
使用 Swift 5.1。然而,在我的对象层次结构的各个点上,我想返回一个不支持 Decodable 的 objC 对象(来自第三方库)。 ,但确实支持从(非平凡的)JSON 字符串解码。我通过使用 JSONSerialization 解决了这个问题创建一个无类型的对象层次结构,我可以从解码器的 userInfo 中检索属性并使用解码器的 contextPath 进行搜索找到我的数据,然后使用 JSONSerialization
将其转换回字符串数据。

此解决方案不假设获取具有“数据”键的对象所需的对象/数组层次结构。

// Swift 5.1 Playground
import Foundation

// Input configuration JSON
let jsonStr = """
{
"foo":"bar",
"bars": [
{
"data":{
"thing1":"#111100",
"thing2":12
}
},
{
"data":{
"thing1":"#000011",
"thing2":64.125
}
}
]
}
"""

// Object passed to the decoder in the UserInfo Dictionary
// This will contain the serialized JSON data for use by
// child objects
struct MyCodingOptions {
let json: Any

static let key = CodingUserInfoKey(rawValue: "com.unique.mycodingoptions")!
}

let jsonData = Data(jsonStr.utf8)
let json = try JSONSerialization.jsonObject(with: jsonData)
let options = MyCodingOptions(json: json)

let decoder = JSONDecoder()
decoder.userInfo = [MyCodingOptions.key: options]

// My object hierarchy
struct Root: Decodable {
let foo: String
let bars: [Bar]
}

struct Bar: Decodable {
let data: Data?

enum CodingKeys: String, CodingKey {
case data = "data"
}
}

// Implement a custom decoder for Bar
// Use the context path and the serialized JSON to get the json value
// of "data" and then deserialize it back to data.
extension Bar {
init(from decoder: Decoder) throws {
var data: Data? = nil
if let options = decoder.userInfo[MyCodingOptions.key] as? MyCodingOptions {
// intialize item to the whole json object, then mutate it down the "path" to Bar
var item: Any? = options.json
let path = decoder.codingPath // The path to the current object, does not include self
for key in path {
if let intKey = key.intValue {
//array
item = (item as? [Any])?[intKey]
} else {
//object
item = (item as? [String:Any])?[key.stringValue]
}
}
// item is now Bar, which is an object (Dictionary)
let bar = item as? [String:Any]
let dataKey = CodingKeys.data.rawValue
if let item = bar?[dataKey] {
data = try JSONSerialization.data(withJSONObject: item)
}
}
self.init(data: data)
}
}

if let root = try? decoder.decode(Root.self, from: jsonData) {
print("foo: \(root.foo)")
for (i, bar) in root.bars.enumerated() {
if let data = bar.data {
print("data #\(i): \(String(decoding: data, as: UTF8.self))")
}
}
}

//prints:
// foo: bar
// data #0: {"thing2":12,"thing1":"#111100"}
// data #1: {"thing2":64.125,"thing1":"#000011"}

关于swift4 - Swift 4 Decodable - 将 JSON 对象解码为 `Data`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46999079/

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