Google Places API(localhost)出现“Access-Control-Allow-Origin”问题

时间:2014-04-23 22:15:25

标签: jquery ajax cors google-places-api

我正在尝试对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添加到a​​jax调用参数中。 我做了很多研究,一切似乎都很好,但我仍然没有从调用中获得JSON对象。

你可以帮我这个吗? 我哪里错了?

0 个答案:

没有答案