JSONDecoder语言 - 将字符串值解码为正确的类型



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

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

Struct Place {
var created_at: Date?
var longitude: Double?
var latitude: 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
}

我知道我可以提取字符串并转换为双精度值:

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

但是还有别的办法吗?

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

如果 JSON 值String则必须解码String。无法从String隐式类型转换为Double

您可以通过添加计算变量来避免自定义初始值设定项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)
}
}

相关内容

  • 没有找到相关文章

最新更新