我有我的模特课
class CPOption : Object, Mappable
{
dynamic var optionId : Int64 = 0
override static func primaryKey() -> String? {
return "optionId"
}
required convenience init?(map: Map) {
self.init()
}
func mapping(map: Map) {
optionId <- map["id"] //**Here i need to transform string to Int64**
}
}
我的输入JSON包含optionId为String。
"options": [
{
"id": "5121",
},
]
我需要在Objectmapper Map函数中将这个传入的字符串类型转换为Int64。
答案 0 :(得分:10)
您可以创建自定义对象Transform类。
class JSONStringToIntTransform: TransformType {
typealias Object = Int64
typealias JSON = String
init() {}
func transformFromJSON(_ value: Any?) -> Int64? {
if let strValue = value as? String {
return Int64(strValue)
}
return value as? Int64 ?? nil
}
func transformToJSON(_ value: Int64?) -> String? {
if let intValue = value {
return "\(intValue)"
}
return nil
}
}
在映射函数中使用此自定义类进行转换
optionId <- (map["id"], JSONStringToIntTransform())
答案 1 :(得分:1)
有诀窍可以使用
func mapping(map: Map) {
let optionIdTemp: String?
optionIdTemp <- map["id"]
optionId = (optionIdTemp as? NSString)?.intValue
}