编程语言
首页 > 编程语言> > 设置JavaScript以调用具有不同参数的函数

设置JavaScript以调用具有不同参数的函数

作者:互联网

我有以下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,而是调用或应用公共函数commonFunc和上面的handlerA和handlerB函数中的任意参数,用于不同的事件处理程序.可能吗?

例:

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

非常感谢!

解决方法:

这个怎么样:

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');
            }
        }
    });
},

标签:extjs4-1,javascript,extjs,extjs4,extjs-mvc
来源: https://codeday.me/bug/20190902/1787588.html