我们可以在 Swift 中使结构中的 Codable 键不区分大小写吗
Can we make the Codable key in struct as case insensitive in Swift
我们可以让 Codable 键不区分大小写吗?
NOT VALUE 但 KEY ITSELF 需要不区分大小写
struct Model: Codable, Equatable {
let number: String?
let id: String?
let address: String?
enum CodingKeys: String, CodingKey {
case number = "A-Number"
case id = "A-Id"
case address = "AddressId"
}
}
因此它适用于两者 json:
Sample Json 1
{
"A-Number" : "12345",
"A-Id" : "1",
"AddressId" : "3456"
}
Sample Json 2
{
"a-number" : "12345",
"a-id" : "1",
"addressid" : "3456"
}
使用以下代码将键设为小写,以便您可以在整个应用程序中使用。
注意:如果你想使用它们,你所有的键都会用这个解决方案小写。
struct AnyKey: CodingKey {
var stringValue: String
init?(stringValue: String) {
self.stringValue = stringValue
}
var intValue: Int? {
return nil
}
init?(intValue: Int) {
return nil
}
}
struct DecodingStrategy {
static var lowercase: ([CodingKey]) -> CodingKey {
return { keys -> CodingKey in
let key = keys.first!
let modifiedKey = key.stringValue.prefix(1).lowercased() + key.stringValue.dropFirst()
return AnyKey(stringValue: modifiedKey)!
}
}
}
要使用这个:
let jsonDecoder = JSONDecoder()
jsonDecoder.keyDecodingStrategy = .custom(DecodingStrategy.lowercase)
let dataModel = try jsonDecoder.decode(YourDataModel, from: yourdata)
我们可以让 Codable 键不区分大小写吗? NOT VALUE 但 KEY ITSELF 需要不区分大小写
struct Model: Codable, Equatable {
let number: String?
let id: String?
let address: String?
enum CodingKeys: String, CodingKey {
case number = "A-Number"
case id = "A-Id"
case address = "AddressId"
}
}
因此它适用于两者 json:
Sample Json 1
{
"A-Number" : "12345",
"A-Id" : "1",
"AddressId" : "3456"
}
Sample Json 2
{
"a-number" : "12345",
"a-id" : "1",
"addressid" : "3456"
}
使用以下代码将键设为小写,以便您可以在整个应用程序中使用。 注意:如果你想使用它们,你所有的键都会用这个解决方案小写。
struct AnyKey: CodingKey {
var stringValue: String
init?(stringValue: String) {
self.stringValue = stringValue
}
var intValue: Int? {
return nil
}
init?(intValue: Int) {
return nil
}
}
struct DecodingStrategy {
static var lowercase: ([CodingKey]) -> CodingKey {
return { keys -> CodingKey in
let key = keys.first!
let modifiedKey = key.stringValue.prefix(1).lowercased() + key.stringValue.dropFirst()
return AnyKey(stringValue: modifiedKey)!
}
}
}
要使用这个:
let jsonDecoder = JSONDecoder()
jsonDecoder.keyDecodingStrategy = .custom(DecodingStrategy.lowercase)
let dataModel = try jsonDecoder.decode(YourDataModel, from: yourdata)