10

目前,当我在一个控制器中并且我想从另一个控制器调用一个函数时,我这样做:

App.app.getControllerInstances()['App.controller.OtherController'].do_something();

对我来说似乎有点沉重,是否有另一种(更好的)方法可以做到这一点?

谢谢

4

3 回答 3

30

我会使用 getController 方法:http ://docs.sencha.com/touch/2-0/#!/api/Ext.app.Application-method-getController

例如:this.getApplication().getController('ControllerName').doSomething();

于 2012-05-20T09:21:57.033 回答
11

如果您不在控制器的上下文中(例如在某个对象的回调函数中),您可以这样做。

MyAppName.app.getController('ControllerName').doSomething();
于 2013-07-25T20:34:36.083 回答
7

在 Sencha Touch 2 中使用 MVC 约定时,当尝试从“ControllerA”内部调用“ControllerB”中名为“SomeMethodInB”的方法时,我会推荐以下内容:

MyAppName.app.getController('ControllerB')。

“MyAppName”是您在核心应用定义中定义的应用的名称 - 通常在您的 app.js 文件中。

根据 Sencha 论坛,以下是折旧的:

this.getApplication().getController('ControllerB').SomeMethodInB();

http://www.sencha.com/forum/showthread.php?158996

事实上,我可以调用“this.getApplication()”方法甚至工作的唯一方法是从我的应用程序定义文件 (app.js) 中调用它。

于 2013-08-17T19:23:25.850 回答