sencha学习(一)

阅读更多
ST应用首页的js脚本(可以理解为启动程序)常用编写方式有两种:
A、Examples中采用的 —— Ext.setup方式

?
//使用setup来启动主程序
Ext.setup({
    tabletStartupScreen: 'tablet_startup.png', //tablet设备时主屏中间出现的背景图片
    phoneStartupScreen: 'phone_startup.png', //phone设备时主屏中间出现的背景图片
    icon: 'icon.png', glossOnIcon: false, //跟Extjs一样,主程序代码卸载onReady里面
    onReady: function(options) {
        //TODO
    }
});

B、quick start中采用的 —— Ext.Application方式
?
new Ext.Application({
    launch: function() {
        //TODO
    }
});

你可能感兴趣的:(sencha学习(一))