そのため、私は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');
}