我有一个具有字段类型ID的类(枚举类),两者都是可编码的,我无法读取枚举的原始值,我应该实现其他什么
我的代码:
struct Answer: Codable {
let id: ID?
let message: String?
enum CodingKeys: String, CodingKey {
case id = "Id"
case message = "Message"
}
}
enum ID: Codable {
case integer(Int)
case string(String)
init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if let x = try? container.decode(Int.self) {
self = .integer(x)
return
}
if let x = try? container.decode(String.self) {
self = .string(x)
return
}
throw DecodingError.typeMismatch(ID.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Wrong type for ID"))
}
func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
switch self {
case .integer(let x):
try container.encode(x)
case .string(let x):
try container.encode(x)
}
}
}
如何读取像这样的值answer.id?.rawValue
在声音中,我得到的id可以是整数或字符串,因此可以通过类可编码的swift自动知道实例是好的枚举。
因此,如果我想要一个整数,则:
answer.id?.rawValue
//output 4
因此,如果我收到一个字符串,我想要:
answer.id?.rawValue
//output "male"
当我打印此文件时,我注意到它与一个值相关联:
print(answer.id.debugDescription)
//Output: Optional(fitto.ID.integer(2)) or if is string Optional(fitto.ID.string("female"))
答案 0 :(得分:2)
一种解决方案是在枚举中添加两个计算出的属性,以获取与关联的值。
var stringValue : String? {
guard case let .string(value) = self else { return nil }
return value
}
var intValue : Int? {
guard case let .integer(value) = self else { return nil }
return value
}
并使用它
answer.id?.intValue