web-dev-qa-db-ja.com

新しいSwift 3およびAlamofireを使用したJSONの解析

Swift 3の更新以来、AlamofireをHTTPライブラリとして使用しています。以下の例に基づいてJSONをどのように解析しますか?

Alamofire.request("https://httpbin.org/get").responseJSON { response in
    debugPrint(response)

    if let json = response.result.value {
        print("JSON: \(json)")
    }
}

respone.result.valueは任意のオブジェクトであり、非常に新しく混乱を招くものです。

11
Law Gimenez

Alamofireテスト でわかるように、response.result.valueから[String:Any]

if let json = response.result.value as? [String: Any] {
  // ...
}
19
mixel

Swift 3の場合:

あなたの応答が以下のような場合、

[
    {
        "uId": 1156,
        "firstName": "Kunal",
        "lastName": "jadhav",
        "email": "[email protected]",
        "mobile": "7612345631",
        "subuserid": 4,
        "balance": 0
    }
]

**以下の単純なコード行で使用される上記のJSON応答を解析する場合:**

    Alamofire.request(yourURLString, method: .get, encoding: JSONEncoding.default)
        .responseJSON { response in
            debugPrint(response)

            if let data = response.result.value{

                if  (data as? [[String : AnyObject]]) != nil{

                    if let dictionaryArray = data as? Array<Dictionary<String, AnyObject?>> {
                        if dictionaryArray.count > 0 {

                            for i in 0..<dictionaryArray.count{

                                let Object = dictionaryArray[i]
                                if let email = Object["email"] as? String{
                                    print("Email: \(email)")
                                }
                                if let uId = Object["uId"] as? Int{
                                    print("User Id: \(uId)")
                                }
                                // like that you can do for remaining...
                            }
                        }
                    }
                }
            }
            else {
                let error = (response.result.value  as? [[String : AnyObject]])
                print(error as Any)
            }
    }
3
Kiran jadhav

SwiftyJsonを使用したくない場合は、Alamofire 4.0でこれを行います。

Alamofire.request("https://httpbin.org/get").responseString { response in
    debugPrint(response)

    if let json = response.result.value {
        print("JSON: \(json)")
    }
}

キーポイントはresponseStringの代わりにresponseJSONを使用しています。

ソース: https://github.com/Alamofire/Alamofire#response-string-handler

2
Micro