目前,我有一个符合 Codable 的结构:
public struct Preference: Codable {
public let id: String
}
当我尝试使用以下内容初始化对象时:
let preference = Preference(id: "cool")
我收到以下错误:
Argument type 'String' does not conform to expected type 'Decoder'
如何解决此问题并正确初始化结构?