gpt4 book ai didi

json - 在 Swift 中解析 JSON 数据(来自 URL)

转载 作者:行者123 更新时间:2023-11-30 14:09:42 25 4
gpt4 key购买 nike

我正在尝试检索一些数据 from an URL感谢 JSON。这是我的快速代码:

// get symbol asked
let symbol = symbolField.text!

// define URL
let url = NSURL(string: "http://yahoojson.gobu.fr/symbol.php?symbol=\(symbol)")!

let task = NSURLSession.sharedSession().dataTaskWithURL(url) { (data, response, error) -> Void in
if let urlContent = data {
do {
let jsonResult = try NSJSONSerialization.JSONObjectWithData(urlContent, options: NSJSONReadingOptions.MutableContainers)

print(jsonResult)
} catch {
print("Error JSON")
}
}
}

task.resume()

一切似乎都工作正常,但“do-try-catch”总是打印“Error JSON”。我的代码似乎无法将我的 URL 内容转换为实际的 JSON。知道我做错了什么吗?

最佳答案

URL 返回 html/javascript,而不是纯 json。

将 URL 粘贴到浏览器中并查看源代码。

旁注:替换

print("Error JSON")

print(error)

获取更具体的错误信息

关于json - 在 Swift 中解析 JSON 数据(来自 URL),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31893868/

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