gpt4 book ai didi

ios - 尝试在 Swift 中使用 SwiftyJSON 循环时,类型 JSON 不符合协议(protocol) SecuenceType

转载 作者:行者123 更新时间:2023-11-28 07:13:11 24 4
gpt4 key购买 nike

我正在使用 SwiftyJSON 库来快速解析我的 json 响应,但是 Xcode 给出了这个错误并且无法循环数组,这是我的代码:

Alamofire.request(.GET, "http://li.homeip.net:8091/query/search/", parameters: ["q": self.queryBox.text])

.responseJSON{ (request, response, responseSphinx, error) in

self.spinner.stopAnimating()
self.spinner.alpha = 0

let jsonSphinx = JSON(object: responseSphinx!)

let resultados = jsonSphinx["matches"]

println(resultados[1]["attrs"]["excerpt"]) // this works fine

for el in resultados { // Error: Type JSON does not conform to protocol SecuenceType
println(el)
}
}

谢谢,我是 swift 的新手。

最佳答案

documentation

for (index: String, el: JSON) in resultados {
println(el)
}

应该适合你。如果失败,您可能需要更新 SwiftyJSON。

或者,你可以试试

for el in resultados.arrayValue {
println(el)
}

关于ios - 尝试在 Swift 中使用 SwiftyJSON 循环时,类型 JSON 不符合协议(protocol) SecuenceType,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27596317/

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