Ext.app.ViewController,将多个组件指向单个处理程序

时间:2015-05-06 12:04:15

标签: javascript extjs

在Ext JS 5. *中,有一种新的控制器类型适合Sencha的MVC建模:Ext.app.ViewController。我对链接的control方法特别感兴趣,根据doc.s.利用Ext.ComponentQuery来"选择"要听的组件。

this.control({})中的典型路由如下:

this.control({  
    'componentselector' : {  
        'event' : this.doSomething  
     }  
//....

是否可以路由多个组件' '事件'使用相同的方法 在一行 ,例如:

this.control({  
    'componentselector', 'anothercomponentselector' : {  
        'event' : this.doSomething  
     }  
//....

真的,这个问题更多的是关于语法糖而不是其他任何东西。

1 个答案:

答案 0 :(得分:4)

是的,就像这样:

'componentselector, anothercomponentselector': {

}