gpt4 book ai didi

uitableview - 如何使用 SwiftyJSON 获取正确的 JSON 响应?

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

我正在使用 alamofire 发出 GET 请求,并尝试使用 SwiftyJSON 转换为 JSON。我可以成功发出请求,但无法将响应转换为可用的 JSON 对象。

我正在尝试从 foursquare field 详细响应中获取数据,并使用有关 field 的适当信息更新 UITableView(详细信息页面)。 UITableView 有 3 个不同的部分。

这是我的 VenueDetailViewController (UITableViewController) 的 makeRequest 代码。

func makeRequest() {

Alamofire.request(.GET, self.foursquareEndpointURL, parameters: [

"client_id" : self.foursquareClientID,
"client_secret" : self.foursquareClientSecret,
"v" : "20140806"
])
.responseJSON { (request, response, data, error) in
println(request)
println(response)
println(error)
println(data)
if data != nil {
var jsonObj = JSON(data!)
// response is not in the form of an array? I think... thats why data is not setting .. I think "arrayValue" below is incorrect. should be something like dictionaryValue or stringValue
if let obj = jsonObj["response"]["venue"].arrayValue as [JSON]? {
self.responseitems = obj
self.tableView.reloadData()
println("Objis: \(obj)")
}

}
}
}

当我 println("Obis:\(obj)") 时,我得到 Objis: [] 的控制台输出,告诉我我获取了错误的数据来自 JSON 响应?这是 Foursquare Venue Detail API request 的网址

哦,self.responseitemsvar responseitems:[JSON] = []

请帮忙!谢谢

最佳答案

查看此代码:

let url = "Foursquare Venue Detail API request goes here"
Alamofire .request(.GET, url) .responseJSON(options: nil) { (_, _, data, error) -> Void in
if error != nil {
println(error?.localizedDescription)
} else if let data: AnyObject = data {
let jObj = JSON(data)
if let venue = jObj["response"]["venue"].dictionary {
println(venue)
}

}
}

所以这里的主要区别是数据是一个字典,而不是一个数组。

顺便说一下,考虑重新加载主队列中的 TableView ,因为这会影响 UI:

dispatch_async(dispatch_get_main_queue()) {
self.tableView.reloadData() // Update UI
}

关于uitableview - 如何使用 SwiftyJSON 获取正确的 JSON 响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29721662/

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