如何在初始化控制器之前运行代码

时间:2013-03-13 09:50:40

标签: extjs sencha-touch-2

我正在使用 Sencha Touch 2

构建应用程序

我想在Controllers已初始化 但我们的应用requires已加载的情况下运行一些代码。

查看Ext.app.Application源代码,我真的想截取onProfilesLoaded来电。但我只是不知道该怎么做。

1 个答案:

答案 0 :(得分:1)

好吧,我想我自己想出来了。显然,您可以使用override功能拦截。

Ext.define('MyApp.AppOverrides', {
    override: 'Ext.app.Application',

    onProfilesLoaded: function(){
        alert('Hey Mum, I just intercepted the call!');
        this.callParent(arguments);
    }
});