当我构建并运行以下内容时:
// Grabbing the Overlay Networks
let urlString = "https://test.sdnnw.net/networks/overlay_networks"
if let url = NSURL(string: urlString) {
let URLRequest = NSMutableURLRequest(URL: url)
URLRequest.setValue("token", forHTTPHeaderField: "User-Token")
URLRequest.setValue("username", forHTTPHeaderField: "User-Auth")
URLRequest.HTTPMethod = "GET"
Alamofire.request(URLRequest).responseJSON { (response) -> Void in
if let value = response.result.value {
let json = JSON(value)
print(json)
}
}
}
我得到以下结果(这是正确的):
[
{
"uuid" : "c8bc05c5-f047-40f8-8cf5-1a5a22b55656",
"description" : "Auto_API_Overlay",
"name" : "Auto_API_Overlay",
}
]
当我构建并运行以下内容时:
// Grabbing the Overlay Networks
let urlString = "https://test.sdnnw.net/networks/overlay_networks"
if let url = NSURL(string: urlString) {
let URLRequest = NSMutableURLRequest(URL: url)
URLRequest.setValue("token", forHTTPHeaderField: "User-Token")
URLRequest.setValue("username", forHTTPHeaderField: "User-Auth")
URLRequest.HTTPMethod = "GET"
Alamofire.request(URLRequest).responseJSON { (response) -> Void in
if let value = response.result.value {
let json = JSON(value)
print(json["name"].stringValue)
print(json["description"].stringValue)
print(json["uuid"].stringValue)
}
}
}
我得到空白输出 - 没有null
,nil
或[:]
,只是空白。已经搜索了SwiftyJSON
这里并且没有找到任何接近清除为什么stringValue
无法正常工作(也许我正在使用不正确的关键字进行搜索?)。我非常欣赏一些关于我做错了什么的反馈。
答案 0 :(得分:2)
在JSON中,[]
字符用于数组,{}
用于字典。
您的JSON结果:
[{" uuid" :" c8bc05c5-f047-40f8-8cf5-1a5a22b55656"," description" :" Auto_API_Overlay"," name" :" Auto_API_Overlay",}]
是一个包含字典的数组。
例如,使用循环获取内容。
使用SwiftyJSON,循环使用元组(SwiftyJSON对象的第一个arg是索引,第二个arg是内容):
for (_, dict) in json {
print(dict["name"].stringValue)
print(dict["description"].stringValue)
print(dict["uuid"].stringValue)
}
小心SwiftyJSON properties以Value
结尾,因为它们是非可选 getter(如果值为nil,则会崩溃)。 可选获取者没有Value
:
for (_, dict) in json {
if let name = dict["name"].string,
desc = dict["description"].string,
uuid = dict["uuid"].string {
print(name)
print(desc)
print(uuid)
}
}