3

次の ExtJS コントローラー コードがあります。

init: function() {
    this.control({
        '#menuitem-A': { click: this.handlerA },
        '#menuitem-B': { click: this.handlerB },
    });
},

および次のイベント ハンドラー:

commonFunc: function(param1, param2) {
    // do something with param1 and param2 in here
},

handlerA: function(button, event) {
    this.commonFunc('param-A1', 'param-A2');
},

handlerB: function(button, event) {
    this.commonFunc('param-B1', 'param-B2');
},

問題:現在のコードは冗長です:異なるパラメータhandlerAhandlerB呼び出すだけですcommonFunc

質問:さまざまなイベント ハンドラーに対して、上記のand関数内の任意のパラメーターを持つ共通関数handlerAand handlerBand の代わりにcallor を削除したいと考えています。出来ますか?applycommonFunchandlerAhandlerB

例:

init: function() {
    this.control({
        '#menuitem-A': { click: /*commonFunc with ['param-A1', 'param-A2']*/ },
        '#menuitem-B': { click: /*commonFunc with ['param-B1', 'param-B2']*/ },
    });
},

どうもありがとう!

4

1 に答える 1

5

これはどう:

init: function() {
    this.control({
        '#menuitem-A': { 
            click: function(button, event){
                this.commonFunc('param-A1', 'param-A2');
            }
        },
        '#menuitem-B': { 
            click: function(button, event){
                this.commonFunc('param-B1', 'param-B2');
            }
        }
    });
},
于 2012-07-04T13:20:47.870 に答える