I'm using Alamofire as HTTP library, since the update to Swift 3, how do you parse JSON based on the example below?
Alamofire.request("https://httpbin.org/get").responseJSON { response in
debugPrint(response)
if let json = response.result.value {
print("JSON: (json)")
}
}
respone.result.value
is of Any object, and is very new and confusing.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…