向Google Places API发出GET请求时遇到CORS错误。我有点知道CORS是什么,但我不知道如何避免发生此错误。 API的后端不应该是处理此问题的人吗?
导致错误的代码:
axios.get('https://maps.googleapis.com/maps/api/place/findplacefromtext/json?input=%2B61293744000&inputtype=phonenumber&fields=place_id&key=')
.then(response => {
console.log(response)
}).catch((error) => console.log(error));