我在应用程序中解析JSON,一些JSON具有我处理的nil
值。但是,该应用程序仍然向我显示 JSON 包含nil
值的错误。我的代码:
struct Response : Decodable {
let articles: [Article]
}
struct Article: Decodable {
let title: String
let description : String
let url : String
let urlToImage : String
}
URLSession.shared.dataTask(with: url) { (data, response, error) in
guard let data = data else { return }
do {
let article = try JSONDecoder().decode(Response.self , from : data)
for i in 0...article.articles.count - 1 {
if type(of: article.articles[i].title) == NSNull.self {
beforeLoadNewsViewController.titleArray.append("")
} else {
beforeLoadNewsViewController.titleArray.append(article.articles[i].title)
}
if type(of : article.articles[i].urlToImage) == NSNull.self {
beforeLoadNewsViewController.newsImages.append(newsListViewController.newsImages[newsListViewController.newsIndex])
} else {
let url = URL(string: article.articles[i].urlToImage ?? "https://static.wixstatic.com/media/b77fe464cfc445da9003a5383a3e1acf.jpg")
let data = try? Data(contentsOf: url!)
if url != nil {
//make sure your image in this url does exist, otherwise unwrap in a if let check / try-catch
let img = UIImage(data: data!)
beforeLoadNewsViewController.newsImages.append(img!)
} else {
beforeLoadNewsViewController.newsImages.append(newsListViewController.newsImages[newsListViewController.newsIndex])
}
这是运行应用程序的错误:
FC91DEECC1631350EFA71C9C561D).description], debugDescription: "预期的字符串值,但找到 null 代替。", 底层错误: nil))
注意:
此 JSON 适用于没有nil
值的其他网址。
这是 JSON
{
"status": "ok",
"source": "entertainment-weekly",
"sortBy": "top",
"articles": [
{
"author": null,
"title": "Hollywood's Original Gone Girl",
"description": null,
"url": "http://mariemcdonald.ew.com/",
"urlToImage": null,
"publishedAt": null
},
{
"author": "Samantha Highfill",
"title": "‘Supernatural’: Jensen Ackles, Jared Padalecki say the boys aren’t going ‘full-mope’",
"description": "",
"url": "http://ew.com/tv/2017/10/18/supernatural-jensen-ackles-jared-padalecki-season-13/",
"urlToImage": "http://ewedit.files.wordpress.com/2017/10/supernatural-season-13-episode-1.jpg?crop=0px%2C0px%2C2700px%2C1417.5px&resize=1200%2C630",
"publishedAt": "2017-10-18T17:23:54Z"
},
{
错误很明显。 JSONDecoder
NSNull
映射到nil
因此,如果解码器要将nil
值解码为非可选类型,则会引发错误。
解决方案是将所有受影响的属性声明为可选属性。
let title: String
let description : String?
let url : String
let urlToImage : String?
或自定义解码器以将nil
替换为空字符串。
而且由于JSONDecoder
地图NSNull
nil
检查if ... == NSNull.self {
是无用的。
编辑:
不要使用丑陋的 C 样式基于索引的循环使用
let response = try JSONDecoder().decode(Response.self , from : data)
for article in response.articles {
beforeLoadNewsViewController.titleArray.append(article.title)
}
PS:但是为什么看在上帝的份上,您将文章实例映射到 - 显然 - 单独的数组?您获得了分别包含与一篇文章相关的所有内容的Article
实例。
对不起,我还不能发表评论。但是,为什么不像在 URLSession 数据检查中那样使用守卫语句测试"null"呢?
然后它看起来像:
guard let title = article.articles[i].title else {
beforeLoadNewsViewController.titleArray.append("")
return
}
beforeLoadNewsViewController.titleArray.append(title)
您尝试在此处解析 JSON 结构,以防 JSON 结构不适合您的需求,您仍然希望它具有相应的属性。
您能否提供您的 JSON 结构以及如何解码
try JSONDecoder().decode(Response.self , from : data)
看来?