我没有使用SwiftyJSON填充表格视图,它没有解析Alamofire JSON结果
let getRouteURL = "http://example.com/api/Trafi/GetRoute/"
Alamofire.request(getRouteURL, method: HTTPMethod.post, parameters: param, encoding: JSONEncoding.default, headers:nil).responseJSON{ response in
if let result = response.result.value {
if let JSON = try? JSON(result){
if let RoutesArr = JSON["Routes"].arrayObject{
self.routes = RoutesArr as! [[String : AnyObject]]
self.routeTable.reloadData()
}
}
}
}
数据示例Here
编辑:此代码正常但错误原因是我的网络服务错误。感谢帮助!
答案 0 :(得分:2)
在请求JSON请求时将内容类型标头设置为application / json,如下所示:
let headers = [
"Content-Type" : "application/json; charset=UTF-8"
]
let getRouteURL = "http://example.com/api/Trafi/GetRoute/"
Alamofire.request(getRouteURL,
method: HTTPMethod.post,
parameters: param,
encoding: JSONEncoding.default,
headers:headers).responseJSON{ response in
if let result = response.result.value {
if let JSON = try? JSON(result){
if let RoutesArr = JSON["Routes"].arrayObject{
self.routes = RoutesArr as! [[String : AnyObject]]
self.routeTable.reloadData()
}
}
}
}
答案 1 :(得分:1)
我这样做:
let request = Alamofire.request(url, method: method, parameters: params, encoding: URLEncoding.default, headers: httpHeaders).validate()
request.responseJSON { response in
switch response.result {
case .success(let json):
let jsonObject = JSON(json)
//Use jsonObject
....
}
}
如果我没记错的话,这个模式来自Alamofire GitHub的例子。我会看看能否找到链接
我认为我对这种模式的使用可能源于this answer。
答案 2 :(得分:0)
这就是我在 Swift 3
上使用 SwiftyJSON 处理JSON的方法// handle data
if let value = response.result.value {
let json = JSON(value)
for(_, location): (String, JSON) in json{
let pendingLocation = PendingLocation(_id: location["_id"].stringValue, userId: location["userID"].stringValue, name: location["name"].stringValue)
self.pendingLocations.append(pendingLocation)
self.tableView.reloadData()
}
}