我在Swift 4中使用新的Codable
协议。我通过URLSession
从Web API中提取JSON数据。这是一些示例数据:
{
"image_id": 1,
"resolutions": ["1920x1200", "1920x1080"]
}
我想把它解码成这样的结构:
struct Resolution: Codable {
let x: Int
let y: Int
}
struct Image: Codable {
let image_id: Int
let resolutions: Array<Resolution>
}
但我不确定如何将原始数据中的分辨率字符串转换为Int
结构中的单独Resolution
属性。我已经阅读了official documentation和一两个好tutorials,但这些都集中在可以直接解码数据的情况下,没有任何中间处理(而我需要将字符串拆分为x
,将结果转换为Int
并将其分配给Resolution.x
和.y
)。这个question似乎也很相关,但是提问者希望避免手动解码,而我对这个策略持开放态度(虽然我不知道如何自己解决这个问题)。
我的解码步骤如下:
let image = try JSONDecoder().decode(Image.self, from data)
data
URLSession.shared.dataTask(with: URL, completionHandler: Data?, URLResponse?, Error?) -> Void)
的位置
答案 0 :(得分:8)
对于每个Resolution
,您希望解码单个字符串,然后将其解析为两个Int
组件。要解码单个值,您希望在decoder
的实现中从init(from:)
获得singleValueContainer()
,然后在其上调用.decode(String.self)
。
然后,您可以使用components(separatedBy:)
来获取组件,然后使用Int
string initialiser将这些组件转换为整数,如果DecodingError.dataCorruptedError
则为defined a custom nested CodingKeys
type你遇到格式不正确的字符串。
编码更简单,因为您可以使用字符串插值将字符串编码为单个值容器。
例如:
import Foundation
struct Resolution {
let width: Int
let height: Int
}
extension Resolution : Codable {
init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
let resolutionString = try container.decode(String.self)
let resolutionComponents = resolutionString.components(separatedBy: "x")
guard resolutionComponents.count == 2,
let width = Int(resolutionComponents[0]),
let height = Int(resolutionComponents[1])
else {
throw DecodingError.dataCorruptedError(in: container, debugDescription:
"""
Incorrectly formatted resolution string "\(resolutionString)". \
It must be in the form <width>x<height>, where width and height are \
representable as Ints
"""
)
}
self.width = width
self.height = height
}
func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
try container.encode("\(width)x\(height)")
}
}
然后您可以这样使用它:
struct Image : Codable {
let imageID: Int
let resolutions: [Resolution]
private enum CodingKeys : String, CodingKey {
case imageID = "image_id", resolutions
}
}
let jsonData = """
{
"image_id": 1,
"resolutions": ["1920x1200", "1920x1080"]
}
""".data(using: .utf8)!
do {
let image = try JSONDecoder().decode(Image.self, from: jsonData)
print(image)
} catch {
print(error)
}
// Image(imageID: 1, resolutions: [
// Resolution(width: 1920, height: 1200),
// Resolution(width: 1920, height: 1080)
// ]
// )
请注意我们Image
中的http://www.subito.it/,因此我们可以为imageID
提供camelCase属性名称,但请指定JSON对象键为image_id
。< / p>