// MARK: - DataModel
struct DataModel: Codable {
let title: String
let blanks: [String]
let value: [Value]
}
enum Value: 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(Value.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Wrong type for Value"))
}
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)
}
}
}
请使用以下代码检查下面Value的值类型。
let jsonData = jsonString.data(using: .utf8)!
let dataModel = try? JSONDecoder().decode(DataModel.self, from: jsonData)
dataModel?.value.forEach { value in
switch value {
case .integer(let intValue):
print(intValue)
case .string(let stringValue):
print(stringValue)
}
}
2条答案
按热度按时间o8x7eapl1#
您可以使用QuickType解析JSON中的模型数据。
请使用以下代码检查下面
Value
的值类型。8e2ybdfx2#
Decodable
需要符合协议的具体类型。不支持Any(Object)
。您可以手动将
Value
编码为UnkeyedContainer
**。结果是strings
中的字串数组和integer
中的整数值。注:JSON值永远不是对象(引用类型)。