gpt4 book ai didi

json - Swift JSON解码字典失败

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

我有一个如下所示的结构:

struct ItemList: Decodable {
var items: [UUID: Int]
}
我得到的示例 JSON 数据是:
{
"items": {
"b4f8d2fa-941f-4f9a-a98c-060bbd468575": 418226428193,
"81efa661-4845-491b-8bf4-06d5dff1d5f8": 417639857722
}
}
现在,当我尝试解码上述数据时,我得到了一个有趣的错误。显然,我不是在解码数组,而且显然所有内容都指向字典。
try JSONDecoder().decode(ItemList.self, from: data)
// typeMismatch(
// Swift.Array<Any>,
// Swift.DecodingError.Context(
// codingPath: [
// CodingKeys(stringValue: "items", intValue: nil)
// ],
// debugDescription: "Expected to decode Array<Any> but found a dictionary instead.",
// underlyingError: nil
// )
// )
所以我去试验并改变了 [UUID: Int][String: Int] ,这确实使这项工作,几乎让我认为该错误与数组/字典无关,而是与 UUID/String 相关。所以我也做了以下测试,从来没有失败过。
let list = try JSONDecoder().decode(ItemList.self, from: data)
for (key, value) in list.items {
// This will never print `nil`
print(UUID(uuidString: key))
}
所以我的问题是,为什么我会得到这个奇怪的 typeMismatch解码时出错,为什么当我更改 UUID 时它会起作用到 String ,因为它可以清楚地正确解码?

最佳答案

this文章很好地解释了为什么会发生这种情况以及您可以做些什么。简短的摘要:

  • Swift 将字典编码为一个数组,其中每个值都遵循一个键
  • 有几种方法可以用来解决这个问题:

  • a) 使用 dict 的数组表示以 swift 的方式弯曲
    b) 使用 StringInt作为您的 key 类型
    c) 使用自定义解码器
    d) 使用 RawRepresentable -协议(protocol)

    关于json - Swift JSON解码字典失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67087643/

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