我正在尝试在新的 Ionic 应用程序中设置Google Maps Places Autocomplete 。
这就是问题所在。在第一次搜索时,我在控制台中收到此错误:
TypeError: Cannot read property 'place_id' of undefined
和终端中的这个错误:
TS2345: Argument of type 'HTMLElement' is not assignable to parameter of type 'HTMLInputElement'
但是,在第二次搜索中,我得到了 place_id,没有任何错误。
这是我的(简化的).ts 文件
import { Component, OnInit } from '@angular/core';
import { google } from "google-maps";
import { Platform } from '@ionic/angular';
@Component({...})
export class AddaddressPage implements OnInit {
autocomplete:any;
constructor(public platform: Platform) {}
ngOnInit() {
this.platform.ready().then(() => {
this.autocomplete = new google.maps.places.Autocomplete(document.getElementById('autocomplete'));
this.autocomplete.setFields(['place_id']);
});
}
fillInAddress() {
var place = this.autocomplete.getPlace();
console.log(place);
console.log(place.place_id);
}
}
和我使用的输入:
<input id="autocomplete" type="text" (change)="fillInAddress()" />
我应该如何进行?