如何使用 swift 从 JSON 中提取数据
Posted
技术标签:
【中文标题】如何使用 swift 从 JSON 中提取数据【英文标题】:How can I pull data from JSON by using swift 【发布时间】:2015-07-08 08:28:30 【问题描述】:我一直在尝试将 JSON 字符串转换为字典值,但我无法让它工作,我得到一个空值。在我尝试提取数据之前,我检查了我是否得到了所有 JSON,所以很明显我在这里做错了
let jsonResult = NSJSONSerialization.JSONObjectWithData(data, options:
NSJSONReadingOptions.MutableContainers, error: nil) as! NSDictionary
var items = [[String:String]()]
var item:AnyObject
var authorDictionary:AnyObject
for var i = 0; i < jsonResult["item"]?.count; i++
items.append([String:String]())
item = (jsonResult["items"] as? [[NSObject:AnyObject]])!
items[i]["content"] = item["content"] as? String
items[i]["title"] = item["title"] as? String
items[i]["publishedDate"] = item["published"] as? String
authorDictionary = item["author"] as! NSDictionary
items[i]["author"] = item["displayName"] as? String
println(items)
这就是我得到的结果: [[:]]
我是 JSON 新手,谁能解释我应该做什么以及我做错了什么?
【问题讨论】:
你能展示你的 JSON 吗?我的猜测是根对象不是包含item
数组的字典
【参考方案1】:
如果 jsonResult["items"]
声明了正确的类型(字典数组),您可以直接迭代它。
然后在循环中你必须每次都创建一个新字典,用你从 JSON 响应中获取的数据填充这个字典,然后将新字典附加到你的 items
字典数组中:
var items = [[String:String]]()
for item in jsonResult["items"] as! [[String:AnyObject]]
var newDict = [String:String]()
newDict["content"] = item["content"] as? String
newDict["title"] = item["title"] as? String
newDict["publishedDate"] = item["published"] as? String
newDict["author"] = item["displayName"] as? String
items.append(newDict)
至于authorDictionary
,因为它是一个简单的字典,而不是一个数组,如果你在循环中给它赋值,它每次都会被覆盖,最后你会得到最后的作者对象。
【讨论】:
【参考方案2】:看看这个
let jsonResult = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers, error: nil) as! NSDictionary
var items = [[String:String]()]
var item:AnyObject
var authorDictionary:AnyObject
for var i = 0; i < jsonResult["items"]!.count; i++
items.append([String:String]())
item = (jsonResult["items"] as! [NSDictionary])[i]
items[i]["content"] = item["content"] as! NSString as String
items[i]["title"] = item["title"] as! NSString as String
items[i]["publishedDate"] = item["published"] as! NSString as String
authorDictionary = item["author"] as! NSDictionary
items[i]["author"] = authorDictionary["displayName"] as! NSString as String
println(items)
【讨论】:
以上是关于如何使用 swift 从 JSON 中提取数据的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Swift 中的加密 JSON 字符串中提取某些字段?
JSON:使用 Alamofire 和 Swift 3 提取数据
如何在 Swift 中从 alamofire 中提取数据? [复制]
如何在 Swift 中从同一站点重新加载新的 JSON 数据?