当前位置:  开发笔记 > 编程语言 > 正文

如何向ExtJS处理程序添加其他参数?

如何解决《如何向ExtJS处理程序添加其他参数?》经验,为你挑选了3个好方法。

我正在使用ExtJS框架,我有以下处理程序,它只用作按钮的处理程序:

var myButtonHandler = function(button, event){
   //code goes here
};

我的按钮定义如下所示:

var myButton = new Ext.Button({
       id : 'myButton',
       renderTo : 'mybutton',
       text : 'Save',
       handler : myButtonHandler,
       scope : this
    });

如您所见,处理程序接收预期的"按钮"和"事件".但是,我想将一些额外的信息传递给我的处理程序.我该怎么办?



1> Ballsacian1..:

我实际上会使用Exts createDelegate原型.

var appendBooleanOrInsertionIndex = 0; // Inserts the variables into the front of the function.
    appendBooleanOrInsertionIndex = true; // Appends the variables to the end of the arguments

var myButton = new Ext.Button({
   id : 'myButton',
   renderTo : 'mybutton',
   text : 'Save',
   handler : myButtonHandler.createDelegate(this, [param1, param2], appendBooleanOrInsertionIndex),
   scope : this
});



2> Bradley..:

在Ext JS 4中:

Ext.bind(myButtonHandler, this, [params array], true);



3> Oleksandr_DJ..:

你可以像布拉德利建议的那样使用一个好的解决方案.这是一个例子.其中repeatsStore - 它是我想要传递给按钮处理程序的附加参数.

Ext.create('Ext.panel.Panel', {
    name: 'panelBtn',
    layout: 'hbox',
    border: 0,
    items:[
        {xtype: 'button', text: 'Add', name:'addBtn',
         handler : Ext.bind(this.addBtnHandler, this, repeatsStore, true)
        }
    ]
});

你的处理程序应该有三个参数 - 前两个是标准的,最后一个是你的.

addBtnHandler:function(button, event, repeatsStore)
{
}

推荐阅读
mobiledu2402851323
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有