我在这个奇怪的问题上一直在苦苦挣扎。
如果我直接在浏览器上或在Postman上运行,则工作正常。 使用javascript或Jquery运行时失败。请看这里的小提琴: https://jsfiddle.net/luron01/4L86x30c/2/
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
xmlhttp.responseText;
}
}
xmlhttp.open("GET", 'https://maps.googleapis.com/maps/api/place/details/json?key=AIzaSyAqrDaQOszbVjKgK9YJQzfkVOXFEOLJH1Y&placeid=ChIJYWzsQuNRqEcRTmcQwwzoPGw', true );
xmlhttp.send();
console.log(xmlhttp.responseText)
我相信我已启用所有必需的API(Google Places API,服务(私有API),Google Maps JavaScript API,Google Maps Geolocation API)。
任何提示都会非常棒! 感谢