所以我在 JS 中工作了很多,并且我在事件上工作了很多(尽量保持模块化)。当前我Event.fire('eventName')
在每个函数结束时调用。我正在寻找一种方法让我的对象/类中的任何函数在Event.fire([function name])
所有函数的末尾自动调用
例子:
function MyClass(){
this.on('someFunc', this.funcTwo);
this.someFunc();
}
MyClass.prototype.on = function( event ){
// the event stuff //
}
MyClass.prototype.someFunc = function(){
console.log('someFunc');
}
MyClass.prototype.funcTwo = function(){
console.log('funcTwo');
}