我正在用 extjs 4 (MVC) 构建一个应用程序。我经常发现需要在两个控制器之间来回切换。但我似乎无法在文档中找到如何。
我的场景是这样的。
Ext.define('mycontroller',{
someMethod: function() {
}
})
Ext.define('mycontroller1',{
someMethod: function() {
var someAction = function() {
//need to call somethod in mycontroller
}
}
})
有任何想法吗?