Alamofire:如何获得部分响应 JSON
Alamofire: How to get parts of response JSON
我有一个关于 Alamofire 的问题。
我正在这样做:
var mutableURLRequest = NSMutableURLRequest(URL:url!)
mutableURLRequest.setValue(response!.allHeaderFields["TOKEN"] as! String, forHTTPHeaderField: "X-AUTH-TOKEN")
mutableURLRequest.HTTPMethod = "GET"
let manager = Alamofire.Manager.sharedInstance // or create a new one
let request = manager.request(mutableURLRequest)
request.responseJSON { (request, response, string, error) in
println(response!.statusCode)
println(string!)
}
当我打印字符串时,输出是 JSON。我想在 JSON 响应中搜索单个元素(f.e。用户名或其他)。
我该怎么做?
谢谢你和最好的问候,
Alban Veliu
您可以在 Swift 中完成,但恕我直言,使用 SwiftyJSON 框架要容易得多。它有一个很好的教程和文档,你应该很快就达到 运行 : https://github.com/SwiftyJSON/SwiftyJSON
我有一个关于 Alamofire 的问题。
我正在这样做:
var mutableURLRequest = NSMutableURLRequest(URL:url!)
mutableURLRequest.setValue(response!.allHeaderFields["TOKEN"] as! String, forHTTPHeaderField: "X-AUTH-TOKEN")
mutableURLRequest.HTTPMethod = "GET"
let manager = Alamofire.Manager.sharedInstance // or create a new one
let request = manager.request(mutableURLRequest)
request.responseJSON { (request, response, string, error) in
println(response!.statusCode)
println(string!)
}
当我打印字符串时,输出是 JSON。我想在 JSON 响应中搜索单个元素(f.e。用户名或其他)。
我该怎么做?
谢谢你和最好的问候,
Alban Veliu
您可以在 Swift 中完成,但恕我直言,使用 SwiftyJSON 框架要容易得多。它有一个很好的教程和文档,你应该很快就达到 运行 : https://github.com/SwiftyJSON/SwiftyJSON