从alamofire responseString返回字符串

时间:2017-05-09 12:07:06

标签: json swift swift3 alamofire

我想使用我已解析的值来在我的应用中创建动态列表视图。但我没有成功。我需要一些帮助。感谢。

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)
        }
    }
}

1 个答案:

答案 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