13

我正在使用AlamofireObjectMapper解析对我的对象的 json 响应。AlamofireObjectMapper 是ObjectMapper的扩展。

根据他们的文件,我的模型类必须符合Mappable协议。例如:

class Forecast: Mappable {
    var day: String?
    var temperature: Int?
    var conditions: String?

    required init?(_ map: Map){

    }

    func mapping(map: Map) {
        day <- map["day"]
        temperature <- map["temperature"]
        conditions <- map["conditions"]
    }
}

为了符合 Mappable protocl,我的模型类必须为每个字段实现所需的初始化程序和映射函数。这说得通。

但是,它如何支持struct类型?例如,我有一个Coordinate结构,我尝试遵守Mappable协议:

struct Coordinate: Mappable {
    var xPos: Int
    var yPos: Int

    // ERROR: 'required' initializer in non-class type
    required init?(_ map: Map) {}

    func mapping(map: Map) {
        xPos <- map["xPos"]
        yPos <- map["yPos"]
    }
}

由于上面显示的错误,我无法使我Coordinate符合 Mappable。

(我认为经常使用structfor 坐标数据而不是 using class

我的问题

Q1。AlamofireObjectMapper 或 ObjectMapper 库是否支持struct类型?那么如何使用它们解析对struct类型对象的 json 响应呢?

Q2。如果这些库不支持解析对结构类型对象的 json 响应。在 iOS 中使用 Swift2 的方法是什么?

4

1 回答 1

11

BaseMappable 协议是这样定义的,因此您应该声明每个方法都符合Mappable

/// BaseMappable should not be implemented directly. Mappable or StaticMappable should be used instead
public protocol BaseMappable {
    /// This function is where all variable mappings should occur. It is executed by Mapper during the mapping (serialization and deserialization) process.
    mutating func mapping(map: Map)
}

可映射协议是这样定义的

public protocol Mappable: BaseMappable {
    /// This function can be used to validate JSON prior to mapping. Return nil to cancel mapping at this point
    init?(map: Map)
}

您必须相应地实施它:

struct Coordinate: Mappable {
    var xPos: Int?
    var yPos: Int?
    
    init?(_ map: Map) {
    }

    mutating func mapping(map: Map) {
        xPos <- map["xPos"]
        yPos <- map["yPos"]
    }
}

或者

struct Coordinate: Mappable {
    var xPos: Int
    var yPos: Int
    
    init?(_ map: Map) {
    }

    mutating func mapping(map: Map) {
        xPos <- map["xPos"] ?? 0
        yPos <- map["yPos"] ?? 0
    }
}

无法将构造函数标记为必需,因为无法继承 struct。映射函数必须被标记为变异,因为变异存储在结构中的数据......

于 2016-05-13T12:14:05.020 回答