我正在使用离子2框架中的Google Maps JavaScript API。这段代码
new google.maps.places.AutocompleteService().getPlacePredictions(
{ input: query, types: ['cities'] },
function (predictions, status) {}
);
将INVALID_REQUEST作为状态和空预测。 在浏览器控制台中,我可以看到此URL查询:
https://maps.googleapis.com/maps/api/place/js/AutocompletionService.GetPredictionsJson?1skha&4sen-US&9scities&15e3&key=my_api_key_is_here&callback=YYYY&token=XXXX
代表query=kha
。
官方文档没有多大帮助(因为没有返回错误状态)。
答案 0 :(得分:0)
在仔细查看文档之后,我发现我使用了错误的类型。它应该是printDiv() {
$(document).ready(() => {
var win = window.open();
var prtn = document.getElementById("divYazdir").innerHTML;
win.document.open();
win.document.write('<' + 'html' + '><head></head>' + '<' + 'body' + '>');
win.document.head.innerHTML = document.head.innerHTML;
win.document.body.innerHTML = prtn
win.document.write('<' + '/body' + '><' + '/html' + '>');
win.document.close();
win.print();
win.close();
});
}
而不是'(cities)'
。