IgnoredKey
@propertyWrapper
public struct IgnoredKey<T> : Codable
IgnoredKey 使用注意
- 1. 并不是真正的忽略被修饰属性的解析,而是解析的时候忽略使用数据。
- 2. 是否有对应数据,不同的处理:
- - 有数据时候,会走进IgnoredKey的
encode(to:)
方法,抛出异常,让外部处理。 - - 没有数据时,不会进来,会被当前一个普通数据解析处理,走无数据时的兜底逻辑。
-
Undocumented
Declaration
Swift
public var wrappedValue: T
-
isEncodable表示该属性是否支持编码, 默认不支持,即:不会加入json中。
Declaration
Swift
public init(wrappedValue: T, isEncodable: Bool = false)
-
Declaration
Swift
public init(from decoder: Decoder) throws
-
The resolution triggered by the other three parties may be resolved here.
Declaration
Swift
public func encode(to encoder: Encoder) throws