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

查看:31
本文介绍了使用新的 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 属于 Any 对象,非常新且令人困惑.

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天全站免登陆