我在我的应用程序中解析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])
}
Run Code Online (Sandbox Code Playgroud)
这是运行应用程序的错误:
FC91DEECC1631350EFA71C9C561D).description],debugDescription:"预期的字符串值,但发现为null.",underlyingError:nil))
此JSON适用于没有nil值的其他URL .
这是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"
},
{
Run Code Online (Sandbox Code Playgroud)
错误很清楚.JSONDecoder映射NSNull到nil如此解码器如果要将nil值解码为非可选类型则抛出错误.
解决方案是将所有受影响的属性声明为可选.
let title: String
let description : String?
let url : String
let urlToImage : String?
Run Code Online (Sandbox Code Playgroud)
或自定义解码器以替换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)
}
Run Code Online (Sandbox Code Playgroud)
PS:但为什么为了天堂的缘故,你将文章实例映射到 - 显然 - 单独的数组?您获得的Article实例分别包含与一篇文章相关的所有内容.