用唯一一个参数从这种结构创建 JSON 的最优雅方法是什么
struct SessionStorage: Encodable {
var value: String
func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
/// the magic
}
enum CodingKeys: String, CodingKey {
case params
}
}
进入这个 JSON 字符串?
{"params": {"value": "{value}"}}
我不想创建嵌套结构。