gpt4 book ai didi

json - 无法从链接解析 JSON - 没有错误,但该函数在尝试访问 URL 后返回

转载 作者:行者123 更新时间:2023-11-30 10:44:33 25 4
gpt4 key购买 nike

我是 Swift 新手,并通过以下教程尝试基本的 JSON 解析。我想打印 JSON 文件的字段,但它不起作用。

尽管该链接存在,并且我使用的链接与之前教程中使用的链接相同,但它会返回而不是继续访问 JSON。

我知道在 Swift4 中使用 Decoder 有一种“更简单”的方法可以做到这一点,但是当我这样做时,我收到了一个错误。

这是我正在使用的结构:

struct Tester {
var userId: Int
var id: Int
var title: String
var body: String

init(json: [String: Any]){
userId = json["userId"] as? Int ?? -10
id = json["id"] as? Int ?? -400
title = json["title"] as? String ?? ""
body = json["body"] as? String ?? ""
}
}

这是尝试访问 JSON 条目的代码

 @IBAction func printIDTitle(_ sender: Any) {


guard let url = URL(string: "https://jsonplaceholder.typicode.com/posts") else { return }

let session = URLSession.shared

session.dataTask(with: url) { (data, response, error) in
if let response = response {
print(response)
}
guard let data = data else { return }




do {


print("here 0\n")
guard let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as? [String: Any] else {
print(error)
return
}
print("here 0.5\n")
print("here 1\n")
let d = Tester(json: json)
print(d.id)
print(d.title)
print("here 2\n")
} catch let error {
print(error)
}
}.resume()






}

“here 0”是唯一显示的打印内容。我的问题可能是什么?

最佳答案

根是一个数组,因此更改

 guard let json = try JSONSerialization.jsonObject(with: data, options:[]) as? [[String: Any]] else {
print(error)
return
}

或者更好

 let res = try! JSONDecoder().decode([Root].self, from:data)


struct Root: Codable {
let userId, id: Int
let title, body: String
}

关于json - 无法从链接解析 JSON - 没有错误,但该函数在尝试访问 URL 后返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56027596/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com