Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

javascript - How to get response from a GET method google maps API?

I want to hit this API and get its response in JSON, but unfortunately I am getting an error in console.

Here is my code

var request = new XMLHttpRequest()
request.open('GET', 'https://maps.googleapis.com/maps/api/place/autocomplete/json?input=Gorak&types=establishment&location=22.9867569,87.8549755&radius=500&key=YOUR-API-KEY', true)
request.setRequestHeader('Content-Type', 'application/json');  
request.send(); 
request.onload = function (){
var data = JSON.parse(this.response)
console.log(data);
} 

This is the error on console:

Access to XMLHttpRequest at 'https://maps.googleapis.com/maps/api/place/autocomplete/json?input=Mirpur,%20Khara&types=establishment&location=22.9867569,87.8549755&radius=500&key=YOUR-API-KEY' from origin 'null' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

Can someone please help me with this?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...