如何将子范围作为父对象的范围?

时间:2012-09-22 11:40:48

标签: javascript object scope prototype

我收到了以下代码:

define(function() {

    var core = function() {};
    var module;

    core.prototype.module = {
      setModule: function(name) {
        this.module = name;
        module = name;
      }
    };

    core.prototype.sandbox = {
      getModules: function() {
          // will throw undefined
          console.log(this._module);
          // will maybe not throw an error?
          console.log(modules);
      }
    };

});

define(['kernel'], function(Kernel) {
    var sampleCore = new Core();
    sampleCore.setModule('test');
    sampleCore.getModules();
});

如您所见,我无法使用此方法访问其他命名空间。是否有其他方式以某种方式访问​​this.module?

此致

3 个答案:

答案 0 :(得分:1)

如何为对象设置参数?:

core.sandbox = {
    register: function(obj, name) {
        console.log( obj.module );
    }
};

var a = new core.module.load(/* ..., .... */);

core.sandbox.register( a );

答案 1 :(得分:0)

使用core.module._modules

core.sandbox = {
  register: function(name) {
      var modules = core.module._modules;
  }
};

答案 2 :(得分:0)

正如我在评论中所说,也许你可以将那个变量添加到核心对象中,以便其他函数有一些共同点可以保留?

define(function() {
    var core = function() {
    var that = this;
    };
    var module;
    core.prototype.module = {
      setModule: function(name) {
        that.module = name;
        module = name;
      }
    };

    core.prototype.sandbox = {
      getModules: function() {
          console.log(that.module);
      }
    };

});