我正在做一些工作,将一个使用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 函数中获得对父类的引用,或者是否有一种替代方法将其连接起来?
1条答案
按热度按时间vwoqyblh1#
使用
dojo.hitch(/*Object*/ scope, /*Function|String*/ method)
:有关详细信息,请访问http://livedocs.dojotoolkit.org/dojo/_base/lang#hitch