6

如何在加载所需文件时为标准 ExtJS MVC 应用程序的视口应用LoadMask ?

这种 MVC 应用程序的一个示例是以下代码段app.js

Ext.Loader.setConfig({enabled:true});

Ext.application({
    requires: [
       'Ext.container.Viewport',
    ],

    name: 'APP',
    appFolder: 'app',

    controllers: [
        'Main'
    ],

    launch: function() {

        Ext.create('Ext.container.Viewport', {
            layout: 'fit',
            items: [
                {
                    xtype: 'main'
                }               
            ]
        });
    }
});

其中main上面是xtypeMVC 视图,它可能扩展 ExtJSPanel等。

是否存在针对这种普遍需求的标准方法?

4

2 回答 2

5

您要做的是在 index.html 文件中显示加载图像。类似的东西:

<div id="page-loader">  
    <img style="position:absolute; width:128px; height:15px; left:50%; top:50%; margin-left:-64px; margin-top: -7px;" src="resources/images/loader.gif" />
</div>

然后将其隐藏div在您的launch()函数中:

if (Ext.get('page-loader')) {
    Ext.get('page-loader').remove();
}
于 2012-07-10T13:56:47.823 回答
2

第一个解决方案很好。另一种选择是:

http://blog.newbridgegreen.com/extjs-4-splash-screen/

于 2013-01-05T14:33:51.547 回答