2016-04-27 10 views
0

この私は今、私はここにalamofireObjectMapperAlamofireObjectMapperオブジェクトのマッピング方法は?

によってこの応答をマッピングしていますAPIから

{ 
Message = "email verification link has been sent to your email. please verify your account."; 
Result =  { 
    "V002_vendors_type" = "<null>"; 
    "V003_pharmacy" =   (
    ); 
    "V010_subscription" = "<null>"; 
    "attempt_date" = "<null>"; 
    created = "2016-04-27T12:26:04.5809108+00:00"; 
    email = "[email protected]"; 
    "first_name" = jack; 
    id = 10180; 
    "is_lock" = 0; 
    "last_name" = "<null>"; 
    mobile = 9999999999; 
    password = e10adc3949ba59abbe56e057f20f883e; 
    "profile_Image" = "<null>"; 
    status = PV; 
    subscription = 1; 
    updated = "2016-04-27T12:26:04.5809108+00:00"; 
    "vendor_type_id" = 1; 
}; 
Status = 1;} 

を得たREPONSEが私のコード

func pharmacySignUp() 
     { 
      let url = "http://\(basicURL)vendor_signup" 
      let param :[String : AnyObject] = 
       [ 
        "email"  : txtemail.text!, 
        "password" : txtpassword.text!, 
        "mobile"  : txtmobile.text!, 
        "first_name" : txtname.text! 
       ] 

      Alamofire.request(.POST, url, parameters: param, encoding: .JSON).responseObject { (response:Response<signupVarificationCode, NSError>) in 
       print(response.result.value) 
       let signupVarificationCode = response.result.value 
       print(signupVarificationCode) 
       print(signupVarificationCode!.Message) 
       print(signupVarificationCode?.Status) 
       print(signupVarificationCode?.result) 

       if let threedayForecast = signupVarificationCode?.result { 


        for ResultNew in threedayForecast { 
         print(ResultNew) 

        } 
       } 

      } 

であり、これらは、私はここで私のクラスでさ値を節約する

class signupVarificationCode: Mappable { 
var Message : String? 
var Status : String? 
var result:[String:AnyObject]? 



required init?(_ map: Map){ 

} 

func mapping(map: Map) { 
    Message <- map["Message"] 
    Status <- map["Status"] 
    result <- map["Result"] 
} 

} 





class Resultnew: Mappable 
{ 

var lastName : String? 
var isLock : String? 
var mobile : String? 
var id: String? 

var attemptDate : String? 
var Created : String? 
var Updated : String? 
var Subscription: String? 

var vendor_type : String? 
var profileimage : String? 
var pharmacy : String? 
var vsbuscription : String? 
var email: String? 


var status : String? 
var vendor_typeId : String? 
var FirstName : String? 
var Password: String? 

required init?(_ map: Map){ 

} 

func mapping(map: Map) { 
    lastName <- map["last_name"] 
    mobile <- map["mobile"] 
    id <- map["id"] 

    isLock <- map["is_lock"] 
    attemptDate <- map["attempt_date"] 
    Created <- map["created"] 

    Updated <- map["updated"] 
    Subscription <- map["subscription"] 
    vendor_type <- map["V002_vendors_type"] 

    profileimage <- map["profile_Image"] 
    pharmacy <- map["V003_pharmacy"] 
    vsbuscription <- map["V010_subscription"] 
    email <- map["email"] 

    status <- map["status"] 
    vendor_typeId <- map["vendor_type_id"] 
    FirstName <- map["first_name"] 

    Password <- map["password"] 
} 
} 

ここで私はgです

for ResultNew in threedayForecast { 
         print(ResultNew) 

        } 

としての私の関数の値をettingが、これらバレスは、この

("last_name", <null>) 
("mobile", 123456) 
("is_lock", 0) 
("attempt_date", <null>) 
("created", 2016-04-27T12:32:20.6046072+00:00) 
("updated", 2016-04-27T12:32:20.6046072+00:00) 
("subscription", 1) 
("V002_vendors_type", <null>) 
("profile_Image", <null>) 
("V003_pharmacy", []) 
("V010_subscription", <null>) 
("email", [email protected]) 
("status", PV) 
("vendor_type_id", 1) 
("first_name", jack) 
("id", 10182) 
("password", e10adc3949ba59abbe56e057f20f883e) 

似てくるが、私はアクセスはこの 印刷(ResultNew.mobile)

のようなものであることはできませんので、どのようにiアクセスACNされています私はアクセスしたいperticular値。私はこれらの中でのみパスワードをしたいので、どのようにこれを行うことができますか?

答えて

1

resultは辞書([String:AnyObject])である必要があります。これに変更してみてください:

var Message : String? 
var Status : String? 
var result:Resultnew? // <-- this line 
+0

ありがとうございます@Losiowatyは私のために働いた。手伝ってくれてありがとう –

関連する問題