使用新的Swift 3和Alamofire解析JSON [英] Parsing JSON using the new Swift 3 and Alamofire

查看:159
本文介绍了使用新的Swift 3和Alamofire解析JSON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Alamofire作为HTTP库,因为更新到Swift 3,你如何根据下面的例子解析JSON?

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 属于任何对象,非常新且令人困惑。

respone.result.value is of Any object, and is very new and confusing.

推荐答案

正如您在 Alamofire中所见测试你应该将 response.result.value 投射到 [String:Any]

As you can see in Alamofire tests you should cast response.result.value to [String:Any]:

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

这篇关于使用新的Swift 3和Alamofire解析JSON的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆