为什么我不能从构造函数中调用静态方法?

Why can't I call a static method from the constructor?

我正在学习 ES6 并试图将一个超过 2700 行的 class 变成一个 小的、易于阅读的文件集合

我想将一些初始化代码从构造函数移到它们自己的方法中。但我有点卡住了。考虑这段代码:

export default class Thingy {
  non_static_prop;

  initNonStaticStuff() {
  }

  constructor(args) {
    this.non_static_prop = 'some non-static prop set by the constructor'; // ok
    console.log(this.non_static_prop); // works as expected
    // now can we get a method to do the same thing?
    initNonStaticStuff(); // fails:
      /**
       * `Uncaught ReferenceError: initNonStaticStuff is not defined`
       */
    // So I guess we'll have to initialize everything here.
    // But then how am I supposed to make my code smaller and more modular?
  }
}

我很困惑。 运行 构造函数中的代码有哪些选项?

当然,我可以改为调用静态方法,但这不允许我访问非静态属性。

我看到的另一个选择是要求创建实例的页面然后 运行 initNonStaticStuff()(例如通过 start() 方法),但我宁愿跳过这样的步骤如果可能的话。

我错过了什么?

只需用 this.initNonStaticStuff();

调用它