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
は任意のオブジェクトであり、非常に新しく混乱を招くものです。
Alamofireテスト でわかるように、response.result.value
から[String:Any]
:
if let json = response.result.value as? [String: Any] {
// ...
}
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)
}
}
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