我想使用我已解析的值来在我的应用中创建动态列表视图。但我没有成功。我需要一些帮助。感谢。
func getValueJSON() {
Alamofire.request("URL").responseJSON { response in
let json = JSON(response.result.value!)
for (key,values) in json {
_ = key
let val = values["nom"]
print(val)
}
}
}
答案 0 :(得分:-1)
也许你正在寻找这个:
Alamofire.request("https://httpbin.org/get").validate().responseJSON { response in
switch response.result {
case .success:
print("Validation Successful")
case .failure(let error):
print(error)
}
}
请在提问之前参考official docs