gpt4 book ai didi

swift - 当缺少值时,Codable 结构中使用的可选属性包装器失败

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

我有一个 struct 带有 Double 属性,在 JSON 中表示为 String来自后端。

struct Test: Codable {
@StringRepresentation
var value: Double?
}

我创建了以下属性包装器,而不是实现 init(from:),它利用 LosslessStringConvertibleString 相互转换>

@propertyWrapper
struct StringRepresentation<T: LosslessStringConvertible> {
private var value: T?

var wrappedValue: T? {
get {
return value
}
set {
value = newValue
}
}
}

extension StringRepresentation: Codable {
init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if container.decodeNil() {
value = nil
} else {
let string = try container.decode(String.self)
value = T(string)
}
}

func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
if let value = value {
try container.encode("\(value)")
} else {
try container.encodeNil()
}
}
}

这适用于

{
"value": "12.0"
}

{
"value": null
}

但是当属性丢失时失败

{
}

报错

▿ DecodingError
▿ keyNotFound : 2 elements
- .0 : CodingKeys(stringValue: "value", intValue: nil)
▿ .1 : Context
- codingPath : 0 elements
- debugDescription : "No value associated with key CodingKeys(stringValue: \"value\", intValue: nil) (\"value\")."
- underlyingError : nil

我猜这是因为底层的 StringRepresentation 不是可选的。我怎样才能让它成为可选的?

编辑:另外,我必须将对象编码为

{
"value": null
}

即不能省略该值。

最佳答案

在 KeyedDecodingContainer 上使用扩展并为解码方法添加重载,如下所示:

extension KeyedDecodingContainer {

func decode<T>(_ type: StringRepresentation <T?>.Type, forKey key: Self.Key) throws -> StringRepresentation <T?> where T : Decodable {
return try decodeIfPresent(type, forKey: key) ?? StringRepresentation <T?>(wrappedValue: nil)
}
}

这将确保始终创建非可选的合成属性 _value,但如果键不存在于 json 中,它只会环绕一个 nil 值。

这与合成的 Codable 初始化器一起工作,因为使用这个重载的 decode 而不是它的通用对应物,因为它有一个具体类型,如果存在的话,它比通用类型更受欢迎。

关于swift - 当缺少值时,Codable 结构中使用的可选属性包装器失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58372719/

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