如何使用Dojo从GoogleMaps事件引用包含类?

n9vozmp4  于 2022-12-16  发布在  Dojo
关注(0)|答案(1)|浏览(205)

我正在做一些工作,将一个使用Google Maps API v2的遗留项目转换为v3。
有一个Dojo类,如下所示:

dojo.declare
(
    "MyNamespace.MapControl",
    null,
    {
        constructor: function() {
            var mapElement = document.getElementById("map");
            this._map = new google.maps.Map(mapElement, {});
            google.maps.event.addListenerOnce(this._map, "idle", this.map_load);
        },

        map_load: function() {
            this.onLoad();
        },

        onLoad: function () { }
    }
);

字符串
问题是,当调用map_load函数时,this 的上下文是Google Map而不是类。
我尝试在类中创建一个局部变量 self,并使用

_self = this;

但变量没有onLoad函数。这是使用该函数的代码:

dojo.declare
(
    "MyNamespace.MapControl",
    null,
    {
        _self: null,      

        constructor: function() {
            var mapElement = document.getElementById("map");
            this._map = new google.maps.Map(mapElement, {});
            google.maps.event.addListenerOnce(this._map, "idle", this.map_load);

            _self = this;
        },

        map_load: function() {
            _self.onLoad(); // fails as onLoad is undefined
        },

        onLoad: function () { }
    }
);

Dojo中是否有一种方法能够在 map_load 函数中获得对父类的引用,或者是否有一种替代方法将其连接起来?

vwoqyblh

vwoqyblh1#

使用dojo.hitch(/*Object*/ scope, /*Function|String*/ method)

google.maps.event.addListenerOnce(this._map, "idle", dojo.hitch(this, "map_load"));

有关详细信息,请访问http://livedocs.dojotoolkit.org/dojo/_base/lang#hitch

相关问题