gpt4 book ai didi

arrays - 仅在发出多个请求后调用函数

转载 作者:搜寻专家 更新时间:2023-11-01 07:26:42 24 4
gpt4 key购买 nike

我正在使用 for-in 循环为数组中的每一项使用 Alamofire 发出 HTTP 请求。我想在收到所有回复后调用一个函数:

for product in products {
let requestURL = "http://api.com/" + product
let parameters = ["apiKey" : "myApiKey"]
Alamofire.request(.GET, requestURL, parameters: parameters)
.responseJSON { response in
// do stuff here
}
}

为了在完成时调用一个函数,我想我可以检查 product 是否是数组的最后一个元素,然后如果是这样就调用该函数(因为请求是异步的).我该怎么做?

最佳答案

您应该使用 GCD 在所有请求完成时得到通知。使用 dispatch_group_createdispatch_group_notify。有关实现细节,请查看此 thread .

来自链接线程的示例代码:

func downloadAllData(allDataDownloadedCompletionHandler:()->Void) {
let dispatchGroup: dispatch_group_t = dispatch_group_create()
let types = ["one", "two", "three"] // there are actually about 10 requests called, but to make it simple I set it to 3
for type in types {
// enter group and run request
dispatch_group_enter(dispatchGroup)
self.downloadDataForType(type, group: dispatchGroup)
}

dispatch_group_notify(dispatchGroup, dispatch_get_main_queue(), {
allDataDownloadedCompletionHandler()
});
}

func downloadDataForType(type:String, group: dispatch_group_t) {
Alamofire.request(Router.TypeData(type: type)).response({ (request, response, xmlResponse, error) -> Void in
// request finished
println("Data for type \(type) downloaded")

// let's parse response in different queue, because we don't want to hold main UI queue
var db_queue = dispatch_queue_create("db_queue", nil)
dispatch_async(db_queue, {
if response?.statusCode == 200 {
saveToDatabase(xmlResponse)
}

// leave group
dispatch_group_leave(group)
})
})
}

关于arrays - 仅在发出多个请求后调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35661005/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com