如何在 Swift 4 Codable 中存储大整数?

How to store Big Integer in Swift 4 Codable?

我正在尝试使用 swift 4 可编码自动解析 API。 API 中的一些字段是 Codable 不支持的大整数,Codable 也不支持 Swift 4.NSNumber 并且 UInt64 很小以适合它。我尝试使用第三方库并将我的变量设置为该类型的可编码变量,但这也没有用。我试图制作一个自定义 class 或结构,它将在容器中仅使用一个值进行转换,但不知道如何使容器接受 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

使用内置 Decimal which derives from NSDecimalNumber。采用Codable

BInt 不符合 CodableDecodable

要在这里使用它应该确认提到的协议

extension BInt: Decodable {
    public init(from decoder: Decoder) throws {
        // Initialization goes here
    }
}