0

在我的应用程序中,我使用 AlamofireObjectMapper 进行映射。我第一次使用这个。这是我从 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-26T11:07:30.3192745+00:00";
email = "abc@gmail.com";
"first_name" = abc;
id = 10167;
"is_lock" = 0;
"last_name" = "<null>";
mobile = 9999999999;
password = xxxxxxxxx;
"profile_Image" = "<null>";
status = PV;
subscription = 1;
updated = "2016-04-26T11:07:30.3192745+00:00";
"Fix_id" = 1;
};
Status = 1;
}

现在这是我的代码

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)



            }

这是我为映射制作的一个类

class signupVarificationCode: Mappable {
var Message : String?
var status : String?


required init?(_ map: Map){

}

func mapping(map: Map) {
    Message <- map["Message"]
    status <- map["Status"]

}

}

通过这段代码我可以得到消息但现在我想映射结果对象那么我该怎么做呢?

感谢 Yuvraj Sinh 它的工作,但我想从 Result 对象访问所有变量,所以我制作了这个对象

class Result: Mappable {
var lastName : String?
var mobile : String?
var id: String?

required init?(_ map: Map){

}

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

}

我想在我的 pharmacySignup 方法中打印移动值。那么我该怎么做呢?

4

3 回答 3

1

由于 API 响应中的 Result 参数代表另一个 JSON 对象,因此应该使用 Dictionary 进行映射。您可以将当前的 signupVarificationCode 替换为以下内容。

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"] as! [String:AnyObject]
     }
}

如果您想更加面向对象,那么您可以创建单独的类Result并以相同的方式使用。

于 2016-04-26T12:33:03.067 回答
0

您必须相信其他名为 Result 的可映射类

    class signupVarificationCode: Mappable {
     var Message : String?
     var status : String?
     var result : Result?

     required init?(_ map: Map){

     }

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

class Result: Mappable {
       var mobile: String?

    required init?(_ map: Map){

         }

         func mapping(map: Map) {
             //Mapping attributtes for example
             mobile <- map["mobile"]
         }
    }
于 2016-04-27T10:33:59.813 回答
0
var result:[String:AnyObject] = map[“Result”] as! [String:AnyObject]

// 在这里你通过使用这个 dict 得到字典结果你可以得到任何键值对 // 它只是一个正常的解析希望它能工作

于 2016-04-26T12:19:29.943 回答