2
我正在使用ExtJS 4.0的新MVC體系結構構建應用程序。我正在尋找一種方法來遍歷應用程序中的所有控制器。下面我已經提供了一些示例代碼來說明我正在嘗試做什麼。有沒有辦法讓ExtJS 4.0應用程序中的所有控制器
Ext.application({
name: 'MyApp',
appFolder: '/App',
controllers: [
'HdMenuItemsController'
],
launch: function() {
//This works:
this.getController('HdMenuItemsController')
//I want to do something like this:
this.controllers.each(myFunction);
//or this:
this.getAllControllers().each(myFunction);
//or this:
Ext.getControllersForApp(this).each(myFunction);
}
});