0

我有几个模块要从字符串中实例化对象。当类/对象等在全局范围内时,这通常很容易window

new window["MyClass"]()

使用 require JS,模块不在范围内,如果在一个类中window,它们也不在。this

你知道我需要什么范围吗?

define(['testclassb'], function(TestClassB) {
  var TestClassA, testclassa;

  TestClassA = (function() {
    function TestClassA() {
      console.log("A");
      new this["TestClassB"](); #errors with undefined function
      new window["TestClassB"](); #errors with undefined function
      new TestClassB(); #works fine
    }

    TestClassA.prototype.wave = function() {
      return console.log("Wave");
    };

    return TestClassA;

  })();

  testclassa = new TestClassA();
  return testclassa.wave();
});
4

1 回答 1

2

我有几个模块,我想从字符串中实例化对象

这主要是个坏主意,表明代码有异味。你真的需要那个吗?

你知道我需要什么范围吗?

TestClassB是一个局部变量,无法通过名称访问。由于您已经静态地声明testclassb为依赖项,因此没有理由不使用静态变量TestClassB

但是,require.js 允许你同步require()已经加载的模块,所以你也可以使用

new (require("testclassb"))();
于 2013-04-10T19:18:34.943 回答