Typescript中的歧义调用表达式



下面的代码段创建了一个Ambiguous调用表达式错误:

/// <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(...)有两个重载,即使formatted_address的类型被正确地解析为字符串,编译器也无法解决正确的类型。然而,当我显式设置方法参数的类型时,它会工作:

var content: string = results[0].formatted_address;
infowindow.setContent(content);

还有一个奇怪的点:我认为当我将infoWindow声明为类变量时,这种解决方法是不必要的。

对我来说,它看起来像一个bug,还是我错过了什么?

就我所见,在API的d.ts文件中,geocode的回调函数参数似乎缺少它的类型定义,如果是这种情况,TypeScript默认将其类型定义为"any",并且该对象内部的任何内容也定义为"any"类型。

因此当你调用

infowindow.setContent(results[0].formatted_address);

TypeScript正在寻找下一个签名的函数:

setContent(param1: any);

在您的d.ts文件中没有定义,并且类型"any"可以是任何类型,这可能是您得到此错误的原因。

相关内容

  • 没有找到相关文章

最新更新