使用Alamofire我正在进行两次调用,然后调用viewDidLoad方法。 我不明白为什么有时候我会得到两者的回应,有时只得到第一次,而其他只有第二次。
render
然后在viewDidLoad()中:
func firstCall() {
Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"])
.responseJSON { response in
print(response.data)
if let JSON = response.result.value {
print("JSON: \(JSON)")
}
}}
func secondCall() {
Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"])
.responseJSON { response in
print(response.data)
if let JSON = response.result.value {
print("JSON: \(JSON)")
}
}}