简体   繁体   English

用于解析JSON数据的JSON结构

[英]JSON Structure for parsing JSON data

I want to parse this JSON,at the top level incoming JSON is an array,how can access to information of dictionary in array? 我想解析此JSON,在顶级传入的JSON是一个数组,如何访问数组中的字典信息?

    [
      {
        "id": 1,
        "name": "Leanne Graham",
        "username": "Bret",
        "email": "Sincere@april.biz",
        "address": {
          "street": "Kulas Light",
          "suite": "Apt. 556",
          "city": "Gwenborough",
          "zipcode": "92998-3874",
          "geo": {
            "lat": "-37.3159",
            "lng": "81.1496"
          }
        },
        "phone": "1-770-736-8031 x56442",
        "website": "hildegard.org",
        "company": {
          "name": "Romaguera-Crona",
          "catchPhrase": "Multi-layered client-server neural-net",
          "bs": "harness real-time e-markets"
        }
      }
]

that is my code but I don't know how detect dictionary data. 那是我的代码,但我不知道如何检测字典数据。

func profileFromJSONData(data : NSData) -> ProfileResult {

        do{
            let jsonObject : [[String:AnyObject]]
            = try NSJSONSerialization.JSONObjectWithData(data, options: []) as! [[String:AnyObject]]

            for profileJSON in jsonObject {
                if let profile = profileFromJsonObject(profileJSON) {
                    finalProfile.append(profile)
                }
            }
            return .Success(finalProfile)
        }
        catch let error {
            return .Failure(error)
        }

    }

it is my profileFromJsonObject method for parse JSON into profile instance 这是我的profileFromJsonObject方法,用于将JSON解析为配置文件实例

func profileFromJsonObject(json: [String:AnyObject]) -> UserProfile?{

        guard let
            id = json["id"] as? Int,
            name = json["name"] as? String,
            userName = json["username"] as? String,
            email = json["email"] as? String,
            address = json["address"] as? NSDictionary,
            phone = json["phone"] as? String,
            website = json["website"] as? String,
            company = json["company"] as? NSDictionary
            else {
                return nil
        }

    let obj = UserProfile(id: id, name: name, userName: userName, email: email, address: address, phone: phone, website: website, company: company)
        return obj
    }

I tried your JSON by taking it in local file, and I am able to parse to the model object in following way. 我通过将JSON放入本地文件中来对其进行了尝试,并且能够通过以下方式解析为模型对象。 You just put your remote JSON in my code, i hope it will work 您只需将远程JSON放入我的代码中,希望它能正常工作

func getTheLocalJSON()
{
    let filePath = NSBundle.mainBundle().pathForResource("test", ofType: "json");
    let data = NSData.init(contentsOfFile: filePath!);

    var json : NSArray!
    do{
        json = try NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.AllowFragments) as! NSArray;
    }catch{

    }

    print("json \(json)");

    let dictResponse = json.objectAtIndex(0) as! NSDictionary;

    let objUser = profileFromJsonObject(dictResponse)! as UserProfile;

    print("user : \(objUser)");

    //Code to access company name and show it as screen title
    self.title = (objUser.company)!["name"] as? String;

    lblCompanyname.text = (objUser.company)!["name"] as? String;
    lblCatchPhrase.text = (objUser.company)!["catchPhrase"] as? String;
    lblbs.text = (objUser.company)!["bs"] as? String;

}

func profileFromJsonObject(json: NSDictionary) -> UserProfile?{

    guard let
        id = json["id"] as? Int,
        name = json["name"] as? String,
        userName = json["username"] as? String,
        email = json["email"] as? String,
        address = json["address"] as? NSDictionary,
        phone = json["phone"] as? String,
        website = json["website"] as? String,
        company = json["company"] as? NSDictionary
        else {
            return nil
    }

    let obj = UserProfile(id: id, name: name, userName: userName, email: email, address: address, phone: phone, website: website, company: company)

    return obj
}

Output : 输出:

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM