Dojo AMD模块更改“this”的参考

时间:2013-10-03 14:11:44

标签: dojo amd

我真的很困惑,因为我在试图学习AMD风格的Dojo时会看到一些行为。当我实例化我的模块/对象时,“this”指的是我的构造函数中的对象。我调用了一个内部函数,并且该内部函数中的“this”引用了Window对象。所以当我到达this.attachMapEventHandlers时,我得到一个“Object [object global]没有方法'attachMapEventHandlers'”错误。我究竟做错了什么?更新:我找到了lang.hitch,这似乎表明异步性质正在扼杀我,但我对如何实现解决方案感到困惑。

我在index.html中的脚本:

require(["javascript/layout", "dijit/layout/ContentPane", "dijit/layout/BorderContainer", "dijit/layout/AccordionContainer", 
        "dojo/dom", "dojo/dom-attr", "dijit/Toolbar", "dijit/form/Button", "dijit/Dialog","dijit/ProgressBar", "dojo/domReady!"],
        function (layout, dom, domAttr) {
            mapControl = new layout();

layout.js:

define(["dojo/_base/declare"], function(declare) {
return declare(null, {
    action:"pan",
    activeMeasureTool:"",
    aerialLayer:"",
    legendLayers:"",
    loadedServices:"",
    popup:"",
    resizeId:0,
    constructor: function() {
        this.init();
    },
    init: function() {
        require(["esri/map", "esri/config", "esri/SpatialReference", "esri/geometry/Extent"], 
            function(Map, config, SpatialReference, Extent) {
            //custom map requires a proxy to function properly.
            esri.config.defaults.io.proxyUrl = "../sdc_devdata/proxy.php";

            var spatRef = new SpatialReference(2276);

            var startExtent = new Extent(2481416.32087491, 6963246.42495962, 2501196.36936991, 6980267.92469462, spatRef);
            var appFullExtent = new Extent(2396699.46935379, 6872369.60195443, 2607745.94404633, 7107335.22319087, spatRef);

            map = new Map("map", {extent: startExtent, isZoomSlider:true, logo:false, sliderStyle:"large"});
            this.attachMapEventHandlers();
            this.createLayers();
            this.handleLayerVisibilityChange();
        });
    },

2 个答案:

答案 0 :(得分:1)

您可以采取一些措施来解决此问题。

首先,您可以将所需的依赖项添加到define数组,这样您就不需要在类的构造函数中执行异步需求。

这看起来像是:

define(["dojo/_base/declare", "esri/map", "esri/config", "esri/SpatialReference", "esri/geometry/Extent"], function (declare, Map, config, SpatialReference, Extent) {
  return declare(null, {
    action: "pan",
    activeMeasureTool: "",
    aerialLayer: "",
    legendLayers: "",
    loadedServices: "",
    popup: "",
    resizeId: 0,
    constructor: function () {
      this.init();
    },
    init: function () {
      //custom map requires a proxy to function properly.
      esri.config.defaults.io.proxyUrl = "../sdc_devdata/proxy.php";

      var spatRef = new SpatialReference(2276);

      var startExtent = new Extent(2481416.32087491, 6963246.42495962, 2501196.36936991, 6980267.92469462, spatRef);
      var appFullExtent = new Extent(2396699.46935379, 6872369.60195443, 2607745.94404633, 7107335.22319087, spatRef);

      map = new Map("map", {
        extent: startExtent,
        isZoomSlider: true,
        logo: false,
        sliderStyle: "large"
      });
      this.attachMapEventHandlers();
      this.createLayers();
      this.handleLayerVisibilityChange();
    }
  });
});

或者你可以在执行require

时将this的当前范围保存到闭包中
init: function () {
  var that = this;
  require(["esri/map", "esri/config", "esri/SpatialReference", "esri/geometry/Extent"],
    function (Map, config, SpatialReference, Extent) {
      //custom map requires a proxy to function properly.
      esri.config.defaults.io.proxyUrl = "../sdc_devdata/proxy.php";

      var spatRef = new SpatialReference(2276);

      var startExtent = new Extent(2481416.32087491, 6963246.42495962, 2501196.36936991, 6980267.92469462, spatRef);
      var appFullExtent = new Extent(2396699.46935379, 6872369.60195443, 2607745.94404633, 7107335.22319087, spatRef);

      map = new Map("map", {
        extent: startExtent,
        isZoomSlider: true,
        logo: false,
        sliderStyle: "large"
      });
      that.attachMapEventHandlers();
      that.createLayers();
      that.handleLayerVisibilityChange();
    });
},

编辑:您的第三个选项是使用lang.hitch,它允许您在回调函数中指定this的范围。要使用它,您可以将dojo/_base/lang添加到define()依赖项列表,并在lang.hitch(this, function(){});

中包装require回调。
define(["dojo/_base/declare", "dojo/_base/lang"], function (declare, lang) {
  return declare(null, {
    //...
    init: function () {
      require(["esri/map", "esri/config", "esri/SpatialReference", "esri/geometry/Extent"],
        lang.hitch(this, function (Map, config, SpatialReference, Extent) {
          //this now refers to the instance of the class
        }));
    }

  });
});

我强烈建议使用第一个选项,因为它与AMD的整个使用一致(在执行之前声明模块需要哪些依赖项,而不是动态加载它)。

答案 1 :(得分:0)

你可以把'this'放在另一个变量中,比如_this,并在你的内部函数中使用_this,比如

init: function() {
         var _this= this;
        require(["esri/map", "esri/config", "esri/SpatialReference", "esri/geometry/Extent"], 
            function(Map, config, SpatialReference, Extent) {
            ...
            _this.attachMapEventHandlers();
            _this.createLayers();
            _this.handleLayerVisibilityChange();