我正在尝试对Google Places API进行简单的ajax调用,如下所示:
$.ajax({
url: 'https://maps.googleapis.com/maps/api/place/textsearch/json?sensor=true&input=napoli&key=MY_KEY',
type: 'GET',
success: function(response) {
console.log(response);
}
});
我在Chrome上遇到了着名的“Access-Control-Allow-Origin”错误。 我从Google Console API设置了允许的网站:
http://localhost:8000.
我尝试过各种各样的事情,例如将crossDomain: true
添加到ajax调用参数中。
我做了很多研究,一切似乎都很好,但我仍然没有从调用中获得JSON对象。