gpt4 book ai didi

swift - JSONDecoder - 解码字符串值以纠正类型

转载 作者:行者123 更新时间:2023-11-28 14:07:54 30 4
gpt4 key购买 nike

我正在使用一个将每个字段作为字符串返回的 JSON api。然而,其中一些字符串值实际上表示时间戳以及经度和纬度(作为单独的字段)。

如果我将这些值分别指定为 DateDouble,它会 swift 抛出错误 Expected to decode Double but found a string

Struct Place {
var created_at: Date?
var longitude: Double?
var latitude: Double?

}

我在网上看到了一些似乎处理日期格式的示例,但我不确定如何处理 Double 值?

我尝试覆盖 init(from decoder:Decoder) 但这仍然没有给出正确的值:

例如

init(from decoder:Decoder) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
longitude = try values.decode(Double.self, forKey: .longitude) //returns nil but using String works fine
}

我知道我可以提取字符串并转换为 double :

  longitude = Double(try values.decode(String.self, forKey: .longitude))

但是还有别的办法吗?

此外,我实际上还有许多其他属性可以很好地转换,但是通过对这 3 个属性进行此工作,我现在必须在其中添加所有其他属性,这似乎有点多余。有更好的方法吗?

最佳答案

如果 JSON 值为 String,您必须解码 String。从 StringDouble 的隐式类型转换是不可能的。

您可以通过添加计算变量coordinate 来避免自定义初始化程序,在这种情况下,CodingKeys 是必需的

import CoreLocation

struct Place : Decodable {

private enum CodingKeys: String, CodingKey { case createdAt = "created_at", longitude, latitude}

let createdAt: Date
let longitude: String
let latitude: String

var coordinate : CLLocationCoordinate2D {
return CLLocationCoordinate2D(latitude: Double(latitude) ?? 0.0, longitude: Double(longitude) ?? 0.0)
}
}

关于swift - JSONDecoder - 解码字符串值以纠正类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52822755/

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