在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
}
//....
真的,这个问题更多的是关于语法糖而不是其他任何东西。
答案 0 :(得分:4)
是的,就像这样:
'componentselector, anothercomponentselector': {
}