如何列出和操作类方法的某些子集可能

时间:2015-05-23 10:06:12

标签: javascript ecmascript-6

我有一个es6类,其上有一些方法this.OnGame,我必须将它与其他一些代码粘合在一起:

如何简化,粘合,代码片段:

class Gluer {
  glueBaby() {
     this.addSomeGlue('method1');
     this.addSomeGlue('method2');
     this.addSomeGlue('method3');
     this.addSomeGlue('method4');
     this.addSomeGlue('method5');
     this.addSomeGlue('method6');
  }

  addSomeGlue(fn) {
    var game = this.game;

    game.client[fn] = this.OnGame[fn].bind(this.OnGame);
  }
}

我想要一些干代码,添加一些函数(正则表达式匹配),从this.OnGamegame.client

0 个答案:

没有答案