如何在Sencha Touch V2中正确激活MVC视图

时间:2011-10-19 02:26:24

标签: sencha-touch sencha-touch-2

我正在运行Sencha Touch V2测试版,我看的最多recent documentation

我已按照Ext.application说明操作,并尝试正确布置我的MVC应用程序。不幸的是,我无法弄清楚如何使用这种方法实际加载View。

index.js

Ext.application({

    name: 'rpc',
    defaultUrl: 'home/index',
    controllers: ['home'], //note: define controllers here
    launch: function () {

        console.log('Ext.application ~ launch'),

        Ext.create('Ext.TabPanel', {
            id: 'rpc-rootPanel',
            fullscreen: true,
            tabBarPosition: 'bottom',
            items: [{
                title: 'Home',
                iconCls: 'home'
            }]
        });

        Ext.create('Ext.viewport.Viewport', {
            id:'rpc-rootPanel',
            fullscreen: true,
            layout: 'card',
            cardSwitchAnimation: 'slide'
        });

    }
});

homeController.js

Ext.define('rpc.controller.home', {
    extend: 'Ext.app.Controller',
    views: ['home.index'],
    stores: [],
    refs: [],
    init: function () {
        console.log('rpc.controller.home ~ init');
    },

    index: function () {
        console.log('rpc.controller.home ~ index');
    }
});

indexView.js

Ext.define('rpc.view.home.index', {
    extend: 'Ext.Panel',
    id: 'rpc-view-home-index',
    config: {
        fullscreen: true,
        layout: 'vbox',
        items: [{
            xtype: 'button',
            text: 'Videos',
            handler: function () {
            }
        }],
        html:'test'
    }
});

非常感谢您提供的任何帮助。

2 个答案:

答案 0 :(得分:5)

新版本遵循ExtJS 4中引入的MVC概念。您应该阅读Architecture guide,因为Sencha Touch将遵循相同的arch.Here是我的文件夹结构:

Folder structure for Sencha Touch 2 application

在开发应用程序期间,您应该在html中使用sencha-touch-all-debug-w-comments.js。这有助于调试您的应用程序。

这是应用程序类:

Ext.Loader.setConfig({enabled: true});
Ext.application({
    name: 'rpc',
    appFolder: 'app',           
    controllers: ['Home'],
    launch: function () {

        Ext.create('Ext.tab.Panel',{
            fullscreen: true,           
            tabBarPosition: 'bottom',
            items:[{
                title: 'Home',
                iconCls: 'home',
                html: '<img src="http://staging.sencha.com/img/sencha.png" />'
            },{
                title: 'Compose',
                iconCls: 'compose',
                xtype: 'homepage'
            }]          
        });     
    }
});

注意,我如何使用别名(xtype:'homepage')包含主页视图。

这是控制器:

Ext.define('rpc.controller.Home', {
    extend: 'Ext.app.Controller',
    views: ['home.HomePage'],
    init: function() {    

        console.log('Home controller init method...');
    }    
});

最后,我的主页视图:

Ext.define('rpc.view.home.HomePage', {
    extend: 'Ext.Panel',    
    alias: 'widget.homepage',
    config: {               
        html: '<img src="http://staging.sencha.com/img/sencha.png" />'
    },
    initialize: function() {
        console.log("InitComponent for homepage");      
        this.callParent();  
    }       
});

alias属性用于在需要时实例化类的实例。您也可以使用Ext.create方法。

我希望这可以帮助您开始使用Sencha Touch。

答案 1 :(得分:0)

阿卜杜勒的精彩回答。

您也可以通过个人资料进行操作,如以下答案所示: Sencha Touch 2.0 MVC tutorial