我注意到如果我在我的请求中添加另一个GMSPlaceField字段,就像这里演示的那样:https://developers.google.com/places/ios-sdk/client-migration#fetch_a_place_photo
并说这样的字段是这样的:
let fields: GMSPlaceField = GMSPlaceField(rawValue: UInt(GMSPlaceField.name.rawValue) | UInt(GMSPlaceField.photos.rawValue))!
字段结果为GMSPlaceField的无效实例:
GMSPlaceField <invalid>
因此请求失败
事实证明GMSPlaceField返回正确的字段,Xcode调试器说无效,但它是有效的。