使用 Alamofire 和 Objectmapper 整数值始终为零

Using Alamofire and Objectmapper the integer value always zero

我将 Alamofire 与 ObjectMapper 一起使用,我的模型 class 就是这样

class Category: Object, Mappable {

dynamic var id: Int = 0
dynamic var name = ""
dynamic var thumbnail = ""
var children = List<Category>()


override static func primaryKey() -> String? {
    return "id"
}


required convenience init?(_ map: Map) {
    self.init()
}

func mapping(map: Map) {
    id <- map["id"]
    name <- map["name"]
    thumbnail <- map["thumbnail"]
    children <- map["children"]
}

}

而且我正在像那样使用 Alamofire

 Alamofire.request(.GET, url).responseArray { (response: Response<[Category], NSError>) in

        let categories = response.result.value

        if let categories = categories {
            for category in categories {
                print(category.id)
                print(category.name)
            }
        }
    }

id一直为零,不知道为什么?

我通过在模型 class 的映射函数中添加转换来修复它

id <- (map["id"], TransformOf<Int, String>(fromJSON: { Int([=10=]!) }, toJSON: { [=10=].map { String([=10=]) } }))

感谢@BobWakefield

"id" 字段是否存在于 JSON 文件中?如果没有,您的初始值零将保留。 JSON 文件中的引号中的值是?如果是,那么它就是一个字符串。不知道ObjectMapper会不会转成Int。

将我的评论移至答案。