我正在使用 GoogleMaps API,这会返回 20 个附近的位置,最多可以返回 60 个位置。位置与 nextPageToken 返回,它允许您获取下一页结果(每页 20 个)。我正在尝试遍历 API 以使自己能够获得所有可用的位置,但遇到了困难: func getAllNearbyLocations(url: URL) {
我正在使用 Alamofire 返回 API 请求(我也尝试过使用 URLSessions)
首先,我整理了一个函数,该函数在完成块中返回 json 字典
// This function returns the JSON from a specific URL
func getJsonFromURL(url: URL, completionHandler: @escaping (NSDictionary) -> ()) {
Alamofire.request(url).responseJSON { response in
let json = response.result.value as! NSDictionary
completionHandler(json)
}
}
接下来我们有一个使用 url 初始化的 getNearByLocation 函数。如您所见,我们返回结果,将它们添加到数组中,检查我们是否有最大数量的结果(60)或者不再有 nextPageToken。如果其中任何一个为假,我们将创建新的 URL 并再次触发我们当前所在的函数。当我们返回所有新位置时,循环结束。
func getAllNearbyLocations(url: URL) {
self.getJsonFromURL(url: url) { (dictionary) in
let newLocations: NSArray = dictionary.value(forKey: "results") as! NSArray
self.locations.addObjects(from: newLocations as! [Any])
if self.locations.count >= 60 {
self.sendNewLocations(locations: self.locations)
}
else {
// We want to now update the URL we are using and search again
if let newPageToken = dictionary["next_page_token"] {
let newURL = self.rootSearchURL + "&pagetoken=" + (newPageToken as! String)
let url = URL(string: newURL)
// We want to get our current URL and remove the last characters from it
self.getAllNearbyLocations(url: url!)
}
else {
// If we have no more pages then we return what we have
self.sendNewLocations(locations: self.locations)
}
}
}
}
奇怪的是,当我使用断点测试代码时,它会按预期返回。它遍历函数,添加所有新位置并返回。当我实时运行它时,返回的字典没有正确返回(不包含位置或下一页标记),所以我的函数只返回前 20 个位置。
我以前使用过 API 请求,但从未如此接近。我觉得这是一个问题 22,因为在我调用请求之前我无法知道新的 pageToken,并且一旦我返回请求,我想立即使用该令牌调用请求。