5

ObjectMapper を使用して json をオブジェクト配列にマッピングする際に問題が発生しています。これが私のモデルオブジェクトです。

class Participant : Mappable {

var user_global_id: String!
var user_app_id: String!

init(){
}

required init?(_ map: Map) {
}

// Mappable
func mapping(map: Map) {
    user_global_id    <- map["user_global_id"]
    user_app_id    <- map["user_app_id"]
}
}

そして、私のjsonは次のようになります。"[{\"user_global_id\":5093363330056192,\"user_app_id\":11}]"

私は ObjectMapper を呼び出しています:

let participants = Mapper<[Participant]>().map(json["registeredParticipants"])

上記の行でエラーが発生します: Type '[Participant]' does not conform to protocol 'Mappable'

4

1 に答える 1

9

主な間違いは、配列をジェネリック属性として渡すことです。ここに解決策があります

 Mapper<Participant>().mapArray(json["registeredParticipants"])
于 2016-06-16T10:39:29.267 に答える