以下代码段创建了一个不明确的调用表达式错误:
/// <reference path="typings/google.maps.d.ts" />
class GoogleMap {
private geocoder;
private latlng;
constructor() {
this.geocoder = new google.maps.Geocoder();
this.latlng = new google.maps.LatLng(51.165691, 10.451526000000058);
}
private setElements(): void {
this.geocoder.geocode({ 'address': "Berlin", 'latLng': this.latlng }, (results) => {
var infowindow = new google.maps.InfoWindow();
infowindow.setContent(results[0].formatted_address); // 'Ambiguous call expression - could not choose overload'
})
}
setContent(...)
有 2 个重载,即使类型formatted_address
被正确解析为字符串,编译器也无法解析正确的类型。但是,当我显式设置方法参数的类型时它会起作用:
var content: string = results[0].formatted_address;
infowindow.setContent(content);
infoWindow
还有一个奇怪的点:当我声明为类变量时,我认为这种解决方法不是必需 的。
对我来说,它看起来像一个错误,还是我错过了什么?