我正在尝试增加我在这个项目中为公共艺术品收集的照片,我正在使用来自 Google Places API 的照片。它在这里说您可以发送详细信息请求以获取一组十张照片。最终,我将打开响应以获取 Google 对每张照片的照片参考,并对数组中的每张照片提出请求并显示它。
不幸的是,当我发送我的详细信息请求时,这个计划就中断了。这是我得到的确切错误:
Fetch API cannot load https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJ5zf5lfXKRIYR8rPafbwaL68&key=MY_API_KEY.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://localhost:4040' is therefore not allowed access.
If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
我从我的本地主机运行它,我很确定这很重要。我所有的其他 API 调用(Google Maps API 和其他几个)都是按原样编写的,所以我有点困惑为什么我会收到错误。以下是相关代码:
The actual API call:
export function getPhotos(placeID) {
let obj = {
method: 'GET'
};
return fetch('https://maps.googleapis.com/maps/api/place/details/json?placeid=' + placeID + '&key=MY_API_KEY')
.then((response) => {
if (response.status >= 400){
throw new Error("Error getting photos for placeID: " + placeID)
}
return response.json()
})
}
如果您需要任何其他信息,请告诉我,我很乐意提供。谢谢!