我有以下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');
},
问题:当前代码多余:handlerA
和handlerB
只需使用不同参数调用commonFunc
问题:
我想删除handlerA
和handlerB
,而不是call
或apply
公共函数commonFunc
,handlerA
和{{handlerB
内的任意参数1}}上面的函数,用于不同的事件处理程序。有可能吗?
示例:
init: function() {
this.control({
'#menuitem-A': { click: /*commonFunc with ['param-A1', 'param-A2']*/ },
'#menuitem-B': { click: /*commonFunc with ['param-B1', 'param-B2']*/ },
});
},
非常感谢!
答案 0 :(得分: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');
}
}
});
},