0
フルレスポンスオブジェクトを迅速にキーにマップする方法は?フルJsonオブジェクトを迅速にマップする方法は?
class Response: Mappable {
var id = String()
var fullResponse = NSDictionary()
required init?(map: Map){
}
func mapping(map: Map) {
id <- map["id"]
// don't know how to map the full json from the repose to the fullResponse key.
fullResponse <- map // map returns empty
}
}
私がキーに全体JSONオブジェクトをマッピングする方法がわかりません。
ありがとうございます。 –
fullResponse < - map ["yourfullResponseKey"] –
私は完全な応答キーを持っていません。その応答からです。 Reposonse JSONのマッピングに必要なキーと別のキーの応答をマッピングするだけです。 –