JSON解析swift,数组在NSURLSession之外没有值

2023-12-20

我正在尝试使用以下代码快速调用 json webservice 并将其显示在tableview在快速的IOS中。

/*declared as global*/ var IdDEc = [String]() // string array declared globally

//inside viewdidload

let url = NSURL(string: "http://192.1.2.3/PhpProject1/getFullJson.php")

let task = NSURLSession.sharedSession().dataTaskWithURL(url!) {(data, response, error) in

let json1 = NSString(data: data!, encoding: NSUTF8StringEncoding)

print("json string is = ",json1) // i am getting response here

let data = json1!.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)

    do {

        let json = try NSJSONSerialization.JSONObjectWithData(data!, options: .MutableContainers) as! NSArray

            for arrayData in json {

                let notId = arrayData["ID"] as! String

                self.IdDEc.append(notId)
            }

            print(" id = ",IdDEc) //here i am getting values

        } catch let error as NSError {

            print("Failed to load: \(error.localizedDescription)")
        }

        print(" id  out count = ",self.IdDEc.count) //here also
    }

    print(" id  out count = ",self.IdDEc.count) // not here

    task.resume()

我将数组 IdDEc 声明为全局数组,但该数组的范围仍然仅驻留在 NSURLSession 内,

我也想使用这个数组来填充表格视图。 这是示例 json 输出文件

[

{"ID":"123" , "USER":"philip","AGE":"23"},

{"ID":"344","USER":"taylor","AGE":"29"},

{"ID":"5464","USER":"baker","AGE":"45"},

{"ID":"456","USER":"Catherine","AGE":"34"}

]

我是 swift 的新手请帮忙


这个想法是使用“回调”。

在这里,我为你想要得到的 NSArray 做了一个:

completion: (dataArray: NSArray)->()

我们创建一个函数来获取数组,并将此回调添加到函数的签名中:

func getDataArray(urlString: String, completion: (dataArray: NSArray)->())

一旦数组准备好,我们将使用回调:

completion(dataArray: theNSArray)

完整的函数如下所示:

func getDataArray(urlString: String, completion: (dataArray: NSArray)->()) {
    if let url = NSURL(string: urlString) {
        NSURLSession.sharedSession().dataTaskWithURL(url) {(data, response, error) in
            if error == nil {
                if let data = data,
                    json1 = NSString(data: data, encoding: NSUTF8StringEncoding),
                    data1 = json1.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false) {
                    do {
                        let json = try NSJSONSerialization.JSONObjectWithData(data1, options: [])
                        if let jsonArray = json as? NSArray {
                            completion(dataArray: jsonArray)
                        }
                    } catch let error as NSError {
                        print(error.localizedDescription)
                    }
                } else {
                    print("Error: no data")
                }
            } else {
                print(error!.localizedDescription)
            }
        }.resume()
    }
}

现在我们像这样使用这个函数,不再有异步问题:

getDataArray("http://192.1.2.3/PhpProject1/getFullJson.php") { (dataArray) in
    for dataDictionary in dataArray {
        if let notId = dataDictionary["ID"] as? String {
            self.IdDEc.append(notId)
        }
    }
    print("id out count = ", self.IdDEc.count)
}

Swift 3更新+修复和改进。

func getContent(from url: String, completion: @escaping ([[String: Any]])->()) {
    if let url = URL(string: url) {
        URLSession.shared.dataTask(with: url) { (data, response, error) in
            if error == nil  {
                if let data = data {
                    do {
                        let json = try JSONSerialization.jsonObject(with: data, options: [])
                        if let content = json as? [[String: Any]] { // array of dictionaries
                            completion(content)
                        }
                    } catch {
                        // error while decoding JSON
                        print(error.localizedDescription)
                    }
                } else {
                    print("Error: no data")
                }
            } else {
                // network-related error
                print(error!.localizedDescription)
            }
        }.resume()
    }
}

getContent(from: "http://192.1.2.3/PhpProject1/getFullJson.php") { (result) in
    // 'result' is what was given to 'completion', an array of dictionaries
    for dataDictionary in result {
        if let notId = dataDictionary["ID"] as? String {
            // ...
        }
    }
}
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

JSON解析swift,数组在NSURLSession之外没有值 的相关文章

随机推荐