我正在尝试使用swift 4 codable自动解析API。 API中的某些字段是Codable不支持的大整数,Codable不支持Swift 4.NSNumber,UInt64很小以适合它。我尝试了一个第三方库,并在可编码范围内将变量设置为该类型,但这也没有用。我试图制作一个自定义类或结构,该类或结构将仅使用容器中的一个值进行转换,但不知道如何使容器接受Big Int类型或将其转换为字符串。 我的代码如下所示。有什么解决办法吗?
import Foundation
import BigNumber
class PersonalizationLean:Codable {
var hubId:String?
var appId:UInt8?
var nodeId:Int?
var name:String?
var ico:String?
var icoBase64:String?
var isBin:Bool?
var lastModifiedAt:Int?
var shouldShowInUi:Bool?
var applianceType:String?
var tags:[String]?
var placeId:PlaceIdCodable?
var roomId:String?
var id:String?
var key:String?
enum CodingKeys:String,CodingKey {
case hubId
case appId
case nodeId
case name
case ico
case icoBase64
case isBin
case lastModifiedAt
case shouldShowInUi
case applianceType
case tags
case placeId
case roomId
case id
case key
}
// required init(from decoder: Decoder) throws {
// do {
// let container = try decoder.container(keyedBy: CodingKeys.self)
// self.hubId = try container.decode(String.self, forKey: .hubId)
// self.appId = try container.decode(UInt8.self, forKey: .appId)
// self.nodeId = try container.decode(Int.self, forKey: .nodeId)
// self.name = try container.decode(String.self, forKey: .name)
// self.ico = try container.decode(String.self, forKey: .ico)
// self.icoBase64 = try container.decode(String.self, forKey: .icoBase64)
// self.isBin = try container.decode(Bool.self, forKey: .isBin)
// self.lastModifiedAt = try container.decode(Int.self, forKey: .lastModifiedAt)
// self.shouldShowInUi = try container.decode(Bool.self, forKey: .shouldShowInUi)
// self.applianceType = try container.decode(String.self,forKey: .applianceType)
// self.tags = try container.decode([String].self,forKey: .tags)
//
//
// }catch {
// print(error)
// }
// }
}
class PlaceIdCodable:Codable {
var placeId:String?
required init(from decoder:Decoder) throws {
do {
let container = try decoder.singleValueContainer()
let placeIdBig = try container.decode(BInt.self) //this gives error
}catch {
print(error)
}
}
}
我正在使用的图书馆为BigNumber
答案 0 :(得分:1)
使用源自Decimal的内置NSDecimalNumber。它采用Codable
答案 1 :(得分:0)
BInt
不符合Codable
或Decodable
要在此处使用它,必须先确认提及的协议
extension BInt: Decodable {
public init(from decoder: Decoder) throws {
// Initialization goes here
}
}