- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
作为值类型和纯函数的粉丝,我让我所有的模型都是结构体。但是我的一些模型共享我需要进行 JSON 编码的属性。因为我不能使用继承(主要是好的,但在这种情况下不好,但我仍然想坚持使用结构)我需要为每个结构声明这些属性。但是 Swift 的 Codable
不允许
使用 Swift 5.1,是否有任何优雅的解决方案(如避免代码重复和反驳 NSJSONSerialization
和字典黑客)来共享结构的 JSON 键值?尤其是在编码 struct
时。
简单的例子
protocol SerializableModel: Codable {
static var version: Int { get }
static var serializerName: String { get }
}
extension SerializableModel {
// Default value
static var version: Int { 100 }
// Static -> Instance convenience
var version: Int { Self.version }
var serializerName: String { Self.serializerName }
}
enum SharedCodingKeyValues {}
extension SharedCodingKeyValues {
static let version = "version"
static let serializer = "serializer"
}
struct Person {
let name: String
}
extension Person: SerializableModel {
static var serializerName: String = "com.mycompany.person"
}
// MARK: Encodable
extension Person {
func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(name, forKey: .name)
// Does not even compile: `Cannot invoke 'encode' with an argument list of type '(Int, forKey: String)'`
// try container.encode(version, forKey: SharedCodingKeyValues.version)
// Runtime crash: => `Unexpectedly found nil while unwrapping an Optional value`
// try container.encode(version, forKey: CodingKeys.init(stringValue: SharedCodingKeyValues.version)!)
// try container.encode(serializerName, forKey: CodingKeys.init(stringValue: SharedCodingKeyValues.serializer)!)
}
}
呸!好的,这没有用,目前,我已经屈服于这个我不满意的解决方案:
struct Person {
let name: String
}
extension Person: SerializableModel {
static var serializerName: String = "com.mycompany.person"
}
// MARK: CodingKeys
extension Person {
// Uh, terrible! I REALLY do not wanna do this, because for large models with many stored properties I have to declare ALL my
// JSON keys, even if they are unchanged (waiting for Swift to improve specifically this point)
// Also since just be declaring this, auto-synthesizing of `init(from decoder: Decoder)` stopped working, uhh! This is terrible.
enum CodingKeys: String, CodingKey {
case name
// Does not even compile: `Raw value for enum case must be a literal`
// case serializer = SharedCodingKeyValues.serializer
case serializer // uh, terrible, the name of this enum has to match ALL my other models' CodingKeys.serializer value, and if the JSON key changes server side I need to find and update them all, since I cannot share this value
case version
}
}
// MARK: Encodable
extension Person {
func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(name, forKey: .name)
try container.encode(version, forKey: .version)
try container.encode(serializerName, forKey: .serializer)
}
}
// MARK: Decodable
extension Person {
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.name = try container.decode(String.self, forKey: .name)
// Actually for now we don't care about any incoming values for the keys `version` and `serializerName` has already been used elsewhere
}
}
这个解决方案有很多不好的地方,请阅读代码内嵌的注释。
最佳答案
您可以做的是定义一个自定义 CodingKey
它基本上结合了你的模型的编码键和你想要的任何其他编码键,就像这样(警告 - 这里有很多代码,但我做了它所以它足够通用,可以在任何项目中的任何模型中重复使用):
protocol CompoundableCodingKey: CodingKey {
associatedtype OtherCodingKeys1
associatedtype OtherCodingKeys2
init(otherCodingKeys1: OtherCodingKeys1)
init(otherCodingKeys2: OtherCodingKeys2)
init(intValue: Int)
init(stringValue: String)
}
struct CompoundCodingKeys<OtherCodingKeys1: CodingKey, OtherCodingKeys2: CodingKey>: CompoundableCodingKey {
private let otherCodingKeys1: OtherCodingKeys1?
private let otherCodingKeys2: OtherCodingKeys2?
private let internalIntValue: Int?
private let internalStringValue: String
var intValue: Int? {
if let otherCodingKeys1 = otherCodingKeys1 {
return otherCodingKeys1.intValue
} else if let otherCodingKeys2 = otherCodingKeys2 {
return otherCodingKeys2.intValue
}
return internalIntValue
}
var stringValue: String {
if let otherCodingKeys1 = otherCodingKeys1 {
return otherCodingKeys1.stringValue
} else if let otherCodingKeys2 = otherCodingKeys2 {
return otherCodingKeys2.stringValue
}
return internalStringValue
}
init(intValue: Int) {
if let otherCodingKeys1 = OtherCodingKeys1(intValue: intValue) {
self.otherCodingKeys1 = otherCodingKeys1
otherCodingKeys2 = nil
internalIntValue = nil
internalStringValue = otherCodingKeys1.stringValue
} else if let otherCodingKeys2 = OtherCodingKeys2(intValue: intValue) {
otherCodingKeys1 = nil
self.otherCodingKeys2 = otherCodingKeys2
internalIntValue = nil
internalStringValue = otherCodingKeys2.stringValue
} else {
otherCodingKeys1 = nil
otherCodingKeys2 = nil
internalIntValue = intValue
internalStringValue = intValue.description
}
}
init(stringValue: String) {
if let otherCodingKeys1 = OtherCodingKeys1(stringValue: stringValue) {
self.otherCodingKeys1 = otherCodingKeys1
otherCodingKeys2 = nil
internalIntValue = nil
internalStringValue = otherCodingKeys1.stringValue
} else if let otherCodingKeys2 = OtherCodingKeys2(stringValue: stringValue) {
otherCodingKeys1 = nil
self.otherCodingKeys2 = otherCodingKeys2
internalIntValue = nil
internalStringValue = otherCodingKeys2.stringValue
} else {
otherCodingKeys1 = nil
otherCodingKeys2 = nil
internalIntValue = nil
internalStringValue = stringValue
}
}
init(otherCodingKeys1: OtherCodingKeys1) {
self.init(stringValue: otherCodingKeys1.stringValue)
}
init(otherCodingKeys2: OtherCodingKeys2) {
self.init(stringValue: otherCodingKeys2.stringValue)
}
}
extension KeyedEncodingContainerProtocol where Key: CompoundableCodingKey {
mutating func encode<T>(_ value: T, forKey key: Key.OtherCodingKeys1) throws where T: Encodable {
try encode(value, forKey: Key(otherCodingKeys1: key))
}
mutating func encode<T>(_ value: T, forKey key: Key.OtherCodingKeys2) throws where T: Encodable {
try encode(value, forKey: Key(otherCodingKeys2: key))
}
mutating func encodeIfPresent<T>(_ value: T?, forKey key: Key.OtherCodingKeys1) throws where T: Encodable {
try encodeIfPresent(value, forKey: Key(otherCodingKeys1: key))
}
mutating func encodeIfPresent<T>(_ value: T?, forKey key: Key.OtherCodingKeys2) throws where T: Encodable {
try encodeIfPresent(value, forKey: Key(otherCodingKeys2: key))
}
mutating func encodeConditional<T>(_ object: T, forKey key: Key.OtherCodingKeys1) throws where T: AnyObject, T: Encodable {
try encodeConditional(object, forKey: Key(otherCodingKeys1: key))
}
mutating func encodeConditional<T>(_ object: T, forKey key: Key.OtherCodingKeys2) throws where T: AnyObject, T: Encodable {
try encodeConditional(object, forKey: Key(otherCodingKeys2: key))
}
}
extension KeyedEncodingContainerProtocol where Key: CompoundableCodingKey, Key.OtherCodingKeys1: CompoundableCodingKey {
mutating func encode<T>(_ value: T, forKey key: Key.OtherCodingKeys1.OtherCodingKeys1) throws where T: Encodable {
try encode(value, forKey: Key.OtherCodingKeys1(otherCodingKeys1: key))
}
mutating func encode<T>(_ value: T, forKey key: Key.OtherCodingKeys1.OtherCodingKeys2) throws where T: Encodable {
try encode(value, forKey: Key.OtherCodingKeys1(otherCodingKeys2: key))
}
mutating func encodeIfPresent<T>(_ value: T?, forKey key: Key.OtherCodingKeys1.OtherCodingKeys1) throws where T: Encodable {
try encodeIfPresent(value, forKey: Key.OtherCodingKeys1(otherCodingKeys1: key))
}
mutating func encodeIfPresent<T>(_ value: T?, forKey key: Key.OtherCodingKeys1.OtherCodingKeys2) throws where T: Encodable {
try encodeIfPresent(value, forKey: Key.OtherCodingKeys1(otherCodingKeys2: key))
}
mutating func encodeConditional<T>(_ object: T, forKey key: Key.OtherCodingKeys1.OtherCodingKeys1) throws where T: AnyObject, T: Encodable {
try encodeConditional(object, forKey: Key.OtherCodingKeys1(otherCodingKeys1: key))
}
mutating func encodeConditional<T>(_ object: T, forKey key: Key.OtherCodingKeys1.OtherCodingKeys2) throws where T: AnyObject, T: Encodable {
try encodeConditional(object, forKey: Key.OtherCodingKeys1(otherCodingKeys2: key))
}
}
extension KeyedEncodingContainerProtocol where Key: CompoundableCodingKey, Key.OtherCodingKeys2: CompoundableCodingKey {
mutating func encode<T>(_ value: T, forKey key: Key.OtherCodingKeys2.OtherCodingKeys1) throws where T: Encodable {
try encode(value, forKey: Key.OtherCodingKeys2(otherCodingKeys1: key))
}
mutating func encode<T>(_ value: T, forKey key: Key.OtherCodingKeys2.OtherCodingKeys2) throws where T: Encodable {
try encode(value, forKey: Key.OtherCodingKeys2(otherCodingKeys2: key))
}
mutating func encodeIfPresent<T>(_ value: T?, forKey key: Key.OtherCodingKeys2.OtherCodingKeys1) throws where T: Encodable {
try encodeIfPresent(value, forKey: Key.OtherCodingKeys2(otherCodingKeys1: key))
}
mutating func encodeIfPresent<T>(_ value: T?, forKey key: Key.OtherCodingKeys2.OtherCodingKeys2) throws where T: Encodable {
try encodeIfPresent(value, forKey: Key.OtherCodingKeys2(otherCodingKeys2: key))
}
mutating func encodeConditional<T>(_ object: T, forKey key: Key.OtherCodingKeys2.OtherCodingKeys1) throws where T: AnyObject, T: Encodable {
try encodeConditional(object, forKey: Key.OtherCodingKeys2(otherCodingKeys1: key))
}
mutating func encodeConditional<T>(_ object: T, forKey key: Key.OtherCodingKeys2.OtherCodingKeys2) throws where T: AnyObject, T: Encodable {
try encodeConditional(object, forKey: Key.OtherCodingKeys2(otherCodingKeys2: key))
}
}
extension KeyedDecodingContainerProtocol where Key: CompoundableCodingKey {
func decode<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys1) throws -> T where T: Decodable {
try decode(type, forKey: Key(otherCodingKeys1: key))
}
func decode<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys2) throws -> T where T: Decodable {
try decode(type, forKey: Key(otherCodingKeys2: key))
}
func decodeIfPresent<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys1) throws -> T? where T: Decodable {
try decodeIfPresent(type, forKey: Key(otherCodingKeys1: key))
}
func decodeIfPresent<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys2) throws -> T? where T: Decodable {
try decodeIfPresent(type, forKey: Key(otherCodingKeys2: key))
}
}
extension KeyedDecodingContainerProtocol where Key: CompoundableCodingKey, Key.OtherCodingKeys1: CompoundableCodingKey {
func decode<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys1.OtherCodingKeys1) throws -> T where T: Decodable {
try decode(type, forKey: Key.OtherCodingKeys1(otherCodingKeys1: key))
}
func decode<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys1.OtherCodingKeys2) throws -> T where T: Decodable {
try decode(type, forKey: Key.OtherCodingKeys1(otherCodingKeys2: key))
}
func decodeIfPresent<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys1.OtherCodingKeys1) throws -> T? where T: Decodable {
try decodeIfPresent(type, forKey: Key.OtherCodingKeys1(otherCodingKeys1: key))
}
func decodeIfPresent<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys1.OtherCodingKeys2) throws -> T? where T: Decodable {
try decodeIfPresent(type, forKey: Key.OtherCodingKeys1(otherCodingKeys2: key))
}
}
extension KeyedDecodingContainerProtocol where Key: CompoundableCodingKey, Key.OtherCodingKeys2: CompoundableCodingKey {
func decode<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys2.OtherCodingKeys1) throws -> T where T: Decodable {
try decode(type, forKey: Key.OtherCodingKeys2(otherCodingKeys1: key))
}
func decode<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys2.OtherCodingKeys2) throws -> T where T: Decodable {
try decode(type, forKey: Key.OtherCodingKeys2(otherCodingKeys2: key))
}
func decodeIfPresent<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys2.OtherCodingKeys1) throws -> T? where T: Decodable {
try decodeIfPresent(type, forKey: Key.OtherCodingKeys2(otherCodingKeys1: key))
}
func decodeIfPresent<T>(_ type: T.Type, forKey key: Key.OtherCodingKeys2.OtherCodingKeys2) throws -> T? where T: Decodable {
try decodeIfPresent(type, forKey: Key.OtherCodingKeys2(otherCodingKeys2: key))
}
}
然后,如果我们改变SharedCodingKeyValues
进入 CodingKey
枚举,像这样:
enum SharedCodingKeys: String, CodingKey {
case version
case serializer
}
...然后我们可以得到一个以 CompoundCodingKeys<CodingKeys, SharedCodingKeys>
类型为键的容器,它允许您指定 任一个 Person.CodingKeys
(不需要手动定义),或 SharedCodingKeys
,像这样:
// MARK: Encodable
extension Person {
func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CompoundCodingKeys<CodingKeys, SharedCodingKeys>.self)
// From `Person.CodingKeys`
try container.encode(name, forKey: .name)
// From `SharedCodingKeys`
try container.encode(version, forKey: .version)
try container.encode(serializerName, forKey: .serializer)
}
}
自 CompoundCodingKeys
本身符合 CodingKey
,您甚至可以更进一步,将任意多的编码键组合成一个,例如 CompoundCodingKeys<CodingKeys, CompoundCodingKeys<SomeOtherCodingKeys, SharedCodingKeys>>
:
enum SomeOtherCodingKeys: String, CodingKey {
case someOtherKey
}
// MARK: Encodable
extension Person {
func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CompoundCodingKeys<CodingKeys, CompoundCodingKeys<SomeOtherCodingKeys, SharedCodingKeys>>.self)
// From `Person.CodingKeys`
try container.encode(name, forKey: .name)
// From `SharedCodingKeys`
try container.encode(version, forKey: .version)
try container.encode(serializerName, forKey: .serializer)
// From `SomeOtherCodingKeys`
try container.encode(serializerName, forKey: .someOtherKey)
}
}
关于ios - swift 5 : Non-terrible solutions for sharing of JSON Key-values for Codable Structs?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58630180/
查看“mysqldump -d”并看到一个键是 KEY,而不是“PRIMARY KEY”或“FOREIGN KEY” 什么是关键? 示例: CREATE TABLE IF NOT EXISTS `TA
在我开始使用 Python 的过程中尝试找出最佳编码实践。我用 Pandas 写了一个 csv 到数据框阅读器。它使用格式: dataframe = read_csv(csv_input, useco
在 Flutter 中,用一个例子可以清楚地解释什么? 我的困惑是关于 key,如下面的代码所示。 MyHomepage({Key key, this.title}) : super(key: key
我在我的 Android 应用程序中使用 GCM。要使用 GCM 服务,我们需要创建 Google API key 。因此,我为 android、服务器和浏览器 key 创建了 API key 。似乎
我想在 azure key 保管库中创建一个 secret ,该 key 将具有多个 key (例如 JSON)。 例如- { "storageAccountKey":"XXXXX", "Co
尝试通过带有 encodeforURL() 的 url 发送 key 时,我不断收到错误消息和 decodefromUrl() .代码示例如下。 这是我的入口页面: key = generateSec
是否有检查雪花变体字段中是否存在键的函数? 最佳答案 您可以使用 IS_NULL_VALUE 来查看 key 是否存在。如果键不存在,则结果将为 NULL。如果键存在,如果值为 JSON null,则
我正在尝试运行此命令: sudo apt-key adv --keyserver keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A 但我收到一个错误: Execu
我有一个 csv 文件,我正在尝试对 row[3] 进行计数,然后将其与 row[0] 连接 row[0] row[3] 'A01' 'a' 'B02'
如何编写具有这种形式的函数: A(key, B(key, C(key, ValFactory(key)))) 其中 A、B 和 C 具有此签名: TResult GetOrAdd(string key
审查 this method我很好奇为什么它使用 Object.keys(this).map(key => (this as any)[key])? 只调用 Object.keys(this).ind
我有一个奇怪的情况。我有一个字典,self.containing_dict。使用调试器,我看到了字典的内容,并且可以看到 self 是其中的一个键。但是看看这个: >>> self in self.c
我需要在我的 Google Apps 脚本中使用 RSA-SHA256 和公钥签署消息。 我正在尝试使用 Utilities.computeRsaSha256Signature(value, key)
我是 React 的初学者开发人员,几天前我看到了一些我不理解的有趣语法。 View组件上有{...{key}},我会写成 key={key} ,它完全一样吗?你有链接或解释吗? render()
代理 key 、合成 key 和人工 key 之间有什么区别吗? 我不清楚确切的区别。 最佳答案 代理键、合成键和人工键是同义词。技术关键是另一个。它们都表示“没有商业意义的主键”。它们不同于具有超出
问题陈述:在 Web/控制台 C# 应用程序中以编程方式检索并使用存储在 Azure Key Vault 中的敏感值(例如数据库连接字符串)。 据我所知,您可以在 AAD 中注册应用,并使用其客户端
问题陈述:在 Web/控制台 C# 应用程序中以编程方式检索并使用存储在 Azure Key Vault 中的敏感值(例如数据库连接字符串)。 据我所知,您可以在 AAD 中注册应用,并使用其客户端
我正在寻找 Perl 警告的解决方案 “引用键是实验性的” 我从这样的代码中得到这个: foreach my $f (keys($normal{$nuc}{$e})) {#x, y, and z 我在
我正在为 HSM 实现 JCE 提供程序 JCE中有没有机制指定 key 生成类型例如: session key 或永久 key KeyGenerator keygen = KeyGener
我在 Facebook 上创建了一个应用程序。我已经正确添加了 keyhash 并且应用程序运行良好但是当我今天来并尝试再次运行它时它给了我这个错误。 这已经是第二次了。 Previsouly 当我收
我是一名优秀的程序员,十分优秀!