我正在使用extjs 4(MVC)构建应用程序。我经常发现需要在两个控制器之间来回切换。但我似乎无法在文档中找到它。
我的情况是这样的。
Ext.define('mycontroller',{
someMethod: function() {
}
})
Ext.define('mycontroller1',{
someMethod: function() {
var someAction = function() {
//need to call somethod in mycontroller
}
}
})
有什么想法吗?
答案 0 :(得分:1)
this.getController('Foo').bar();