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'