如何移除某个监听器

如我们对一个treeloader增加一个监听器load,并且传入初始参数
 this.treeLoader.addListener('load', this.selectedTreeNode.createDelegate(this, [oldTaskId], 0), this);


那如何动态的改变传入的参数oldTaskId?
大致有三种方法:
1.移除原有的load监听器,加入新的监听器
this.treeLoader.events['load'].clearListeners();
this.treeLoader.addListener('load', this.selectedTreeNode.createDelegate(this, [newTaskId], 0), this);
 

注意: this.treeLoader.removeListener('load')这种方法是不行的
2.通过在selectedTreeNode方法中获取新的参数
  如: Ext.get('newTaskIdCmp').getVaule()...
  这种方法适合于总是采用相同的方法获取到newTaskId,另外这种通过Ext.get(..)的方式和面向对象的js思想是相悖的
3.能够获取到某个listener,然后修改其handler的传入参数
  不过这种方式还没找到具体如何实现



你可能感兴趣的:(ext)