我正在尝试学习Swift,而且我有一个与Google的地方API相关的小项目。
我有一个获取场所详细信息的方法,它使用swift中的URLSession发送请求:
func fetchRestaurantDetails(placeId: String) -> Void {
let jsonURLString = "https://maps.googleapis.com/maps/api/place/details/json?placeid=\(placeId)&key=[MY API KEY]"
guard let url = URL(string: jsonURLString) else { return}
let urlRequest = URLRequest(url: url)
// set up the session
let config = URLSessionConfiguration.default
let session = URLSession(configuration: config)
_ = session.dataTask(with: urlRequest) { (data, response, error) in
// check for any errors
guard error == nil else {
print("error calling GET on /todos/1")
print(error!)
return
}
// make sure we got data
guard let responseData = data else {
print("Error: did not receive data")
return
}
// parse the result as JSON, since that's what the API provides
do {
let place = try JSONDecoder().decode(Result.self, from: responseData) // New in Swift 4, used to serialize json.
self.rest = place.result
} catch {
print("error trying to convert data to JSON")
return
}
}.resume()
}
我使用此方法创建一个类型为Restaurants的实例,稍后我将其添加到列表中:
func createRestaurant(placeId: String) -> Restaurants {
self.fetchRestaurantDetails(placeId: placeId)
let rest = Restaurants(name: self.rest.name,
formatted_address: self.rest.formatted_address,
website: self.rest.website,
location: ((self.rest.geometry.location.lat,self.rest.geometry.location.lng)),
opening_hours: self.rest.opening_hours.weekday_text,
photo: restImg)
return rest!
}
但每当我回到" 让休息=餐馆(...)"所有的值都是零。当我尝试调试它时,它只是跳过我的" _ = session "部分一直到 resume(),然后再次回到会话并在 resume()结束。没有数据产生。 自从我之前成功执行了这段代码以来,我感到非常困惑,现在我想知道我是否错过了什么。 谢谢: - )
答案 0 :(得分:1)
放两个断点。一个在
let place = try JSONDecoder().decode(Result.self, from: responseData) // New in Swift 4, used to serialize json.
self.rest = place.result
和第二个
let rest = Restaurants(name: self.rest.name,
formatted_address: self.rest.formatted_address,
website: self.rest.website,
location: ((self.rest.geometry.location.lat,self.rest.geometry.location.lng)),
opening_hours: self.rest.opening_hours.weekday_text,
photo: restImg)
你会意识到第二个被先叫。 您正在获取数据,这是异步完成的,并且在您可用之前尝试使用它。在使用之前,您需要确保数据可用。这里的一种方法是使用完成处理程序。您可以了解完成处理程序here。
答案 1 :(得分:0)
def circlePoints(r, N_points, plane=(1,1,1), centroid=(0,0,0), rotation=0):
(plane_x, plane_y, plane_z) = plane
(centroid_x, centroid_y, centroid_z) = centroid
step = (np.pi*2) / N_points
rot=rotation
i=0
points=[]
for i in xrange(N_points):
x = round(centroid_x + ((np.sin(rot)*r) / plane_x), 2)
y = round(centroid_y + ((np.cos(rot)*r) / plane_y), 2)
z=0 #?
points.append((x,y,z))
rot+=step
return points
print circlePoints(1, 4, [1,2,0], [2,3,1])
print circlePoints(1, 4)
是一种异步方法,因为你在其中调用fetchRestaurantDetails
这是异步的。
您尝试在实际返回之前使用该函数的结果。您有几种方法可以解决此问题:
session.dataTask
fetchRestaurantDetails
检测DispatchGroups
完成时间