gpt4 book ai didi

swift - 为单个属性使用多个 CodingKey

转载 作者:行者123 更新时间:2023-11-28 09:47:08 26 4
gpt4 key购买 nike

是否可以为单个属性使用多个 CodingKey?

struct Foo: Decodable {

enum CodingKeys: String, CodingKey {
case contentIDs = "contentIds" || "Ids" || "IDs" // something like this?
}

let contentIDs: [UUID]
}

最佳答案

您可以通过使用多个 CodingKey 枚举和自定义初始化程序来实现。让我举个例子说明一下

enum CodingKeys: String, CodingKey {
case name = "prettyName"
}

enum AnotherCodingKeys: String, CodingKey {
case name
}

init(from decoder: Decoder) throws {
let condition = true // or false
if condition {
let values = try decoder.container(keyedBy: CodingKeys.self)
name = try values.decode(String.self, forKey: .name)
} else {
let values = try decoder.container(keyedBy: AnotherCodingKeys.self)
name = try values.decode(String.self, forKey: .name)
}
}

关于swift - 为单个属性使用多个 CodingKey,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58236188/

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