Swift SwiftyJSON

4473 ワード

Swift言語は、コードのバグを減らすために表示される設定タイプを必要とする強力なタイプのセキュリティ言語です.しかし、SwiftがJSONというデータを処理する場合、非常に面倒に見えます.この場合、SwiftyJSONを考えることができます.
どうして使うの?
例えば私はこのようなJSONデータを取得します.
{
"error_code" = 0;
reason = "\U6210\U529f";
result =  (
            {
        CityName = "\U5b89\U5e86";
    },
            {
        CityName = "\U868c\U57e0";
    },
           {
        CityName = "\U5171\U548c";
    }
  );
}

必要なのは
 if let resultDic  = jsonValue as? NSDictionary {
         if let resultArray = resultDic["result"] as? NSArray {
             if let resultFirstDic = resultArray[0] as? NSDictionary{
                 if let resultFirstCity = resultFirstDic["CityName"] as? NSString{
                               print("\(resultFirstCity)")
                  }             
             }
       }
 }

上のほうは面倒ですが、私たちはSwityJSONを持っています.
 let jsonWeNeedValue = JSON(data: jsonData)
 if let firstCityName = jsonWeNeedValue["result"][0]["CityName"].string{
              print("cityName ===\(firstCityName)")
 }

もちろん、その利点は、これらだけでなく、後期に深く理解することができます.
初期化と基本的な使用
//    
let json = JSON(data: dataFromNetworking)
//   object AnyObject,         JSON     。      ,             。
let json = JSON(jsonObject)
//           

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

具体的には実際の運用を見てみましょう
に質問
1、一般的なタイプ
    jsonWeNeedValue["result"][0]["CityName"].string
    jsonWeNeedValue["result"].array
    jsonWeNeedValue.dictionary

基本的に私たちが使っているのは、すべてあります.そして、stringValueもあります.後述します.
2、注意オプションと選択不可
 //   
 if let firstCityName = jsonWeNeedValue["result"][0]["CityName"].string{
          print("cityName ===\(firstCityName)")
 }
 else{
          print("error == \(jsonWeNeedValue["result"][0]["CityName"])")
 }

  //    
 let secondCityName = jsonWeNeedValue[["result",1,"CityName"]].stringValue
 print("secondCity ===\(secondCityName)")

つまり、stringstringValueで使用されるのとは異なり、前者がOptional stringで後者がNon-optional stringであり、後者がstringでなければnilに直接戻ってもCashはありません.
3、ショートカットの入力、例えば上のパス" "[["result",1,"CityName"]]は同等である
データパスを直接取得するのと同じように、非常に使いやすいです.
let path =["result",1,"CityName"]
let name = jsonWeNeedValue[path].string

4、配列の下に境界を越えたり、keyを保存しなかったりしたら
上記のように私は直接経路を["result"][0]["CityName"]に変更して、それも直接["result",10000,"CityName"]あるいは空に戻って、どうせnullはできないので、私たちは安心して使用します.
5、循環
循環辞書:第一パラメータはkey、第二パラメータはJSON
let headers = ["apikey":"a566eb03378211f7dc9ff15ca78c2d93"]
Alamofire.request(.GET, "http://apis.baidu.com/heweather/pro/weather?city=beijing", headers: headers)
        .responseJSON { response in
            let jsonWeNeedData = JSON(data: response.data!)
       
            //   
            let cityDic = jsonWeNeedData["HeWeather data service 3.0",0,"aqi","city"].dictionaryValue
            print("cityDic == \(cityDic)")
            //cityDic == ["pm25": 11, "o3": 57, "qlty":  , "aqi": 24, "co": 0, "so2": 5, "pm10": 18, "no2": 18]
            for (key, sub) in cityDic {

                if key == "pm25" {
                    
                    print("subString == \(sub)")
                    // subString == 11
                }
            }
}

もちろん配列も同じですが、ループ配列もメタグループしか使えないことに注意してください.最初のパラメータはstringのindexで、2番目のパラメータはJSONです.
//If json is .Array
//The `index` is 0..

SwityJSONはJSONコードをより簡単に処理することができます.とにかく、簡単で実用的で、お勧めします.
コメントリファレンス
https://github.com/SwiftyJSON/SwiftyJSON http://tangplin.github.io/swiftyjson/