SwiftyJSON详解

最近看了一些网络请求的例子,发现Swift在解析JSON数据时特别别扭,总是要写一大堆的downcast(as?)和可选(Optional),看?号都看花了。随后发现了这个库SwiftyJSON,问题迎刃而解,灰常优雅和Swifty!

简单介绍下这个库(内容译自SwiftyJSONREADME):

为什么典型的在Swift中处理JSON的方法不好?

Swift语言是一种严格的类型安全语言,它要求我们显示的设置类型,并帮助我们写出更少bug的代码。但是当处理JSON这种天生就是隐式类型的数据结构,就非常麻烦了。

拿Twitter中timeline API返回的数据为例:

 [
   {
     ......
     "text": "just another test",
     ......
     "user": {
       "name": "OAuth Dancer",
       ,
       "entities": {
         "url": {
           "urls": [
             {
               "expanded_url": null,
               "url": "http://bit.ly/oauth-dancer",
               "indices": [
                 ,

               ],
               "display_url": null
             }
           ]
         }
       ......
     },
     "in_reply_to_screen_name": null,
   },
   ......]

Swift中的解析代码会是这样:

 let jsonObject : AnyObject! = NSJSONSerialization.JSONObjectWithData(dataFromTwitter, options: NSJSONReadingOptions.MutableContainers, error: nil)
 if let statusesArray = jsonObject as? NSArray{
     ] as? NSDictionary{
         if let user = aStatus["user"] as? NSDictionary{
             if let userName = user["name"] as? NSDictionary{
                 //终于我们得到了`name`

             }
         }
     }
 }

不好吧。就算是换成可选链式调用,也还是一团糟:

 let jsonObject : AnyObject! = NSJSONSerialization.JSONObjectWithData(dataFromTwitter, options: NSJSONReadingOptions.MutableContainers, error: nil)
 ] as? NSDictionary)?["user"] as? NSDictionary)?["name"]{
   //上面这一堆是个啥??
 }

使用SwiftyJSON

你只要这样做就行了:

let json = JSONValue(dataFromNetworking)
if let userName = json[0]["user"]["name"].string{
  //恩~ `name`到手,就这么简单
}

你不需要考虑可选类型的拆包和是否能拆包的判断,这些都自动完成了:

 let json = JSONValue(dataFromNetworking)
 ]["wrong_key"]["wrong_name"].string{
   //冷静,嘿嘿~ 调用不存在的["wrong_key]也不会crash滴, .string最终能安全的返回一个字符串或`nil`
 }

 let json = JSONValue(jsonObject)
 switch json["user_id"]{
 case .JString(let stringValue):
     let id = stringValue.toInt()
 case .JNumber(let doubleValue):
     let id = Int(doubleValue)
 default:
     println("ooops!!! JSON Data is Unexpected or Broken")

后记:SwiftyJSON是怎么做到的?

看到这个库之后,一方面很爽终于有合适的处理JSON的方法了;另一方面心里其实很好奇它是怎么做到的?

通过看源代码,才了解到它是创建了一个JSONValue枚举,这个枚举中有一个JInvalid类型。当使用json字符串来构造JSONValue对象时,如果无法构建成功,就会返回这个JInvalid枚举对象,然后对这个JInvalid枚举对象继续处理,会继续返回JInvalid。直到对其调用string, number, bool之类来获取Swift中的数据类型值时,才会返回nil

这套机制是类似于Optional<T>可选类型的,但是不同的是,Optional中对nil调用方法会crash,但JSONValue中对JInvalid调用方法不会crash,而是继续返回JInvalid。这样使用时就不用写一堆?号啦,反正不会出错滴。

同时,它给JSONValue枚举还创建了其它json中使用到的各种类型JNumber, JString, JBool,它们能通过构造器将原始值包装起来,然后最后通过对应的numberstringbool等属性方法来拆包,得到原始值。

推荐大家也读读这个库的源代码,其对enum的使用灰常巧妙!

json-swift 和 SwiftyJSON 的比较

最近微博上 @SwiftLanguage 让我对这两个库做个简单比较,所以就有了下文:

json-swiftSwiftyJSON都使用了一个自定义的枚举类型来描述JSON数据;通过重载实现了类似Array和Dictionary的下标操作;并可以将NSData类型的json实例转换成其对应的枚举类型的实例。

它们都解决了原来访问JSON类型数据时,必须手动downcast的繁琐操作,如原来要json[“blogs”]? as? Array,现在json[“blogs”]?即可。SwiftyJSON更进一步,连?也可以省掉,使用上更接近Objective-C风格;json-swift保留了?,跟Swift整体风格一致,此外还提供了直接从字面值实例化的便捷操作。

关于用不用?,我个人倾向于SwiftyJSON的做法。其最大优势是可以省写很多?号,无论写程序还是看程序都变得更简单直观;同时由于json结构中数据类型本身就是动态的,如果把每次取值当做一次操作,那么取值的过程不那么type-safe我认为可以接受,只要最终能保证取值结果跟Swift兼容(可选类型)。

if you love it, please page to :https://github.com/SwiftyJSON/SwiftyJSON

 Why is the typical JSON handling in Swift NOT good?

 Swift is very strict about types. But although explicit typing is good for saving us from mistakes, it becomes painful when dealing with JSON and other areas that are, by nature, implicit about types.

 Take the Twitter API for example. Say we want to retrieve a user's "name" value of some tweet in Swift (according to Twitter's API https://dev.twitter.com/docs/api/1.1/get/statuses/home_timeline).

 The code would look like this:

 let JSONObject: AnyObject? = NSJSONSerialization.JSONObjectWithData(data, options: nil, error: nil)

 if let statusesArray = JSONObject as? [AnyObject],
    let status = statusesArray[] as? [String: AnyObject],
    let user = status["user"] as? [String: AnyObject],
    let username = user["name"] as? String {
     // Finally we got the username
 }

 It's not good.

 Even if we use optional chaining, it would be messy:

 let JSONObject: AnyObject? = NSJSONSerialization.JSONObjectWithData(data, options: nil, error: nil)

 ] as? [String: AnyObject])?["user"] as? [String: AnyObject])?["name"] as? String {
     // What a disaster
 }

 An unreadable mess--for something that should really be simple!

 With SwiftyJSON all you have to do is:

 let json = JSON(data: dataFromNetworking)
 ]["user"]["name"].string{
   //Now you got your value
 }

 And don't worry about the Optional Wrapping thing. It's done for you automatically.

 let json = JSON(data: dataFromNetworking)
 ]["wrong_key"]["wrong_name"].string{
     //Calm down, take it easy, the ".string" property still produces the correct Optional String type with safety
 } else {
     //Print the error
     println(json[]["wrong_key"]["wrong_name"])
 }

 Requirements

     iOS 7.0+ / Mac OS X 10.9+
     Xcode 6.1

 Integration
 CocoaPods (iOS +, OS X 10.9+)

 You can use Cocoapods to install SwiftyJSONby adding it to your Podfile:

 platform :ios, '8.0'
 use_frameworks!

 target 'MyApp' do
     pod 'SwiftyJSON', '~> 2.2.0'
 end

 Note that it needs you to install CocoaPods  version, and requires your iOS deploy target >= 8.0:
 Carthage (iOS +, OS X 10.9+)

 You can use Carthage to install SwiftyJSON by adding it to your Cartfile:

 github 

 Manually (iOS +, OS X 10.9+)

 To use this library in your project manually you may:

     for Projects, just drag SwiftyJSON.swift to the project tree
     for Workspaces, include the whole SwiftyJSON.xcodeproj

 Usage
 Initialization

 import SwiftyJSON

 let json = JSON(data: dataFromNetworking)

 let json = JSON(jsonObject)

 if let dataFromString = jsonString.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false) {
     let json = JSON(data: dataFromString)
 }

 Subscript

 //Getting a double from a JSON Array
 let name = json[].double

 //Getting a string from a JSON Dictionary
 let name = json["name"].stringValue

 //Getting a string using a path to the element
 let path = [,,"name"]
 let name = json[path].string
 //Just the same
 let name = json[][]["name"].string
 //Alternatively
 let name = json[,,"name"].string

 //With a hard way
 let name = json[].string

 //With a custom way
 let keys:[SubscriptType] = [,,"name"]
 let name = json[keys].string

 Loop

 //If json is .Dictionary
 for (key: String, subJson: JSON) in json {
    //Do something you want
 }

 The first element is always a String, even if the JSON is an Array

 //If json is .Array
 //The `index` is 0..<json.count's string value
 for (index: String, subJson: JSON) in json {
     //Do something you want
 }

 Error

 Use a subscript to get/set a value in an Array or Dictionary

 If the json is:

     an array, the app may crash with "index out-of-bounds."
     a dictionary, it will get nil without a reason.
     not an array or a dictionary, the app may crash with an "unrecognised selector" exception.

 It will never happen in SwiftyJSON.

 let json = JSON(["name", "age"])
 ].string {
     //Do something you want
 } else {
     println(json[].error) // "Array[999] is out of bounds"
 }

 let json = JSON([])
 if let name = json["address"].string {
     //Do something you want
 } else {
     println(json["address"].error) // "Dictionary["address"] does not exist"
 }

 let json = JSON()
 ].string {
     //Do something you want
 } else {
     println(json[])       // "Array[0] failure, It is not an array"
     println(json[].error) // "Array[0] failure, It is not an array"
 }

 if let name = json["name"].string {
     //Do something you want
 } else {
     println(json["name"])       // "Dictionary[\"name"] failure, It is not an dictionary"
     println(json["name"].error) // "Dictionary[\"name"] failure, It is not an dictionary"
 }

 Optional getter

 //NSNumber
 if let id = json["user"]["favourites_count"].number {
    //Do something you want
 } else {
    //Print the error
    println(json["user"]["favourites_count"].error)
 }

 //String
 if let id = json["user"]["name"].string {
    //Do something you want
 } else {
    //Print the error
    println(json["user"]["name"])
 }

 //Bool
 if let id = json["user"]["is_translator"].bool {
    //Do something you want
 } else {
    //Print the error
    println(json["user"]["is_translator"])
 }

 //Int
 if let id = json["user"]["id"].int {
    //Do something you want
 } else {
    //Print the error
    println(json["user"]["id"])
 }
 ...

 Non-optional getter

 Non-optional getter is named xxxValue

 //If not a Number or nil, return 0
 let id: Int = json["id"].intValue

 //If not a String or nil, return ""
 let name: String = json["name"].stringValue

 //If not a Array or nil, return []
 let list: Array<JSON> = json["list"].arrayValue

 //If not a Dictionary or nil, return [:]
 let user: Dictionary<String, JSON> = json["user"].dictionaryValue

 Setter

 json["name"] = JSON("new-name")
 json[] = JSON()

 json[
 json["coordinate"].double =  8766.766
 json["name"].string =  "Jack"
 json.arrayObject = [,,,]
 json.dictionary = []

 Raw object

 let jsonObject: AnyObject = json.object

 if let jsonObject: AnyObject = json.rawValue

 //convert the JSON to raw NSData
 if let data = json.rawData() {
     //Do something you want
 }

 //convert the JSON to a raw String
 if let string = json.rawString() {
     //Do something you want
 }

 Literal convertibles

 For more info about literal convertibles: Swift Literal Convertibles

 //StringLiteralConvertible
 let json: JSON = "I'm a json"

 //IntegerLiteralConvertible
 let json: JSON =  

 //BooleanLiteralConvertible
 let json: JSON =  true

 //FloatLiteralConvertible
 let json: JSON =  2.8765

 //DictionaryLiteralConvertible
 let json: JSON =  ["I":"am", "a":"json"]

 //ArrayLiteralConvertible
 let json: JSON =  ["I", "am", "a", "json"]

 //NilLiteralConvertible
 let json: JSON =  nil

 //With subscript in array
 var json: JSON =  [,,]
 json[] =
 json[] =
 json[] =
 json[] =  //Don't worry, nothing will happen

 //With subscript in dictionary
 var json: JSON =  []
 json["name"] = "Mike"
 json[" //It's OK to set String
 json["address"] = "L.A." // Add the "address": "L.A." in json

 //Array & Dictionary
 var json: JSON =  [, "list": ["a", "b", "c", ["what": "this"]]]
 json[]["what"] = "that"
 json[,"what"] = "that"
 let path = [,"what"]
 json[path] = "that"

 Work with Alamofire

 SwiftyJSON nicely wraps the result of the Alamofire JSON response handler:

 Alamofire.request(.GET, url, parameters: parameters)
   .responseJSON { (req, res, json, error) in
     if(error != nil) {
       NSLog("Error: \(error)")
       println(req)
       println(res)
     }
     else {
       NSLog("Success: \(url)")
       var json = JSON(json!)
     }
   }

iOS开发——网络编程Swift篇&(八)SwiftyJSON详解的更多相关文章

  1. iOS开发——网络编程Swift篇&Alamofire详解

    Alamofire详解 预览图 Swift Alamofire 简介 Alamofire是 Swift 语言的 HTTP 网络开发工具包,相当于Swift实现AFNetworking版本. 当然,AF ...

  2. iOS开发——网络编程Swift篇&(七)NSURLSession详解

    NSURLSession详解 // MARK: - /* 使用NSURLSessionDataTask加载数据 */ func sessionLoadData() { //创建NSURL对象 var ...

  3. iOS开发——网络编程Swift篇&(二)同/异&步请求

    同/异&步请求 同步: // MARK: - 同步请求 func httpSynchronousRequest() { //创建NSURL对象 var url:NSURL! = NSURL(s ...

  4. iOS开发——网络编程Swift篇&(一)网络监测

    网络监测 enum ReachabilityType { case WWAN, WiFi, NotConnected } public class Reachability { /** :see: O ...

  5. iOS开发——网络编程Swift篇&(六)异步Post方式

    异步Post方式 // MARK: - 异步Post方式 func asynchronousPost() { //创建NSURL对象 var url:NSURL! = NSURL(string: &q ...

  6. iOS开发——网络编程Swift篇&(五)同步Post方式

    同步Post方式 // MARK: - 同步Post方式 func synchronousPost() { //创建NSURL对象 var url:NSURL! = NSURL(string: &qu ...

  7. iOS开发——网络编程Swift篇&(四)异步Get方式

    异步Get方式 // MARK: - 异步Get方式 func asynchronousGet() { //创建NSURL对象 var url:NSURL! = NSURL(string: " ...

  8. iOS开发——网络编程Swift篇&(三)同步Get方式

    同步Get方式 // MARK: - 同步Get方式 func synchronousGet() { //创建NSURL对象 var url:NSURL! = NSURL(string: " ...

  9. iOS开发——网络编程OC篇&Socket编程

    Socket编程 一.网络各个协议:TCP/IP.SOCKET.HTTP等 网络七层由下往上分别为物理层.数据链路层.网络层.传输层.会话层.表示层和应用层. 其中物理层.数据链路层和网络层通常被称作 ...

随机推荐

  1. [Papers]NSE, $\p_3u$, Lebesgue space [Kukavica-Ziane, JMP, 2007]

    $$\bex \p_3\bbu\in L^p(0,T;L^q(\bbR^3)),\quad \frac{2}{p}+\frac{3}{q}=2,\quad \frac{9}{4}\leq q\leq ...

  2. webdriver(python)学习笔记二

    自己开始一个脚本开始学习: # coding = utf-8 from selenium import webdriver browser = webdriver.Firefox() browser. ...

  3. Tableau学习笔记之四

    创建基本变量图表: 1.可以创建表格,条形图,饼图,直方图,线图,堆积条形图,箱线图等. 2.根据自己选择的变量和维度的数量,Tableau中的“智能显示”会相应的提醒,可以绘制哪些图形,可以绘制的一 ...

  4. 【windows核心编程】DLL相关(1)

    DLL相关的东西 1.DLL的加载方式 隐式: #pragma comment(lib, "XX.lib"); 编译器去查找名为XX.dll的DLL,除了名字相同,该DLL和该LI ...

  5. linux挂载问题解决

    1. 挂载光盘 </pre></p><p><pre name="code" class="plain">[roo ...

  6. LeetCode题解——Longest Common Prefix

    题目: 给定一系列的字符串,找出这些字符串的最长公共前缀. 解法: 暴力法,依次比较每个字符串的每个字符,碰到第一个不同的就返回之前找到的前缀. 代码: class Solution { public ...

  7. PHP中的替代语法

    今天看了一下wordpress的代码,里面有些少见的php替代语法, <?php else : ?> <div class="entry-content"> ...

  8. android sensor传感器系统架构初探

    http://blog.csdn.net/qianjin0703/article/details/5942579 http://blog.chinaunix.net/uid-28621021-id-3 ...

  9. linux 切换c++版本

    删除gcc-4.6的软连接文件/usr/bin/gcc.(只是删除软连接) 命令:sudo rm /usr/bin/gcc 然后建一个软连接,指向gcc-4.4. 命令:sudo ln -s /usr ...

  10. 快速建立Linux c/c++编译环境

    sudo apt-get install build-essential 省时又省心~