2016-06-16 3 views
2

ObjectMapper를 사용하여 json을 내 객체 배열에 매핑하는 데 문제가 있습니다. 여기 내 모델 객체가 있습니다. 내 모델의 배열에 JSON 매핑 - ObjectMapper

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

주요 실수는 일반적인 속성으로 배열을 전달에 . 해결책은 다음과 같습니다.

Mapper<Participant>().mapArray(json["registeredParticipants"])