在 Javascript 中定义一个类时,如何从另一个方法调用一个方法?
exports.myClass = function () {
this.init = function() {
myInternalMethod();
}
this.myInternalMethod = function() {
//Do something
}
}
上面的代码在执行时给了我以下错误:
ReferenceError: myInternalMethod 未定义
我也试过this.myInternalMethod和self.myInternalMethod,但都导致错误。这样做的正确方法是什么?