希望再次查看此基本代码,以了解为什么我的轮播(以及不同视图中的微调器)在构建(测试或生产)后没有显示。
编辑:也可能有帮助的是,我必须构建为 SUDO。会不会是权限错误?我无法以非 SUDO b/c 的身份运行“sencha”命令,出现以下错误:
/Projects/Sencha/Cmd/3.0.2.288/sencha: line 59: 43741 Trace/BPT trap: 5 java $jvmArgs -jar $BASEDIR/sencha.jar "$@" 2> stderr.txt
谢谢,史蒂夫
Ext.define('MyApp.view.Tutorial', {
extend: 'Ext.Container',
fullscreen: true,
xtype: 'tutorial',
requries: [
'Ext.carousel.Carousel',
'Ext.dataview.List',
'Ext.data.proxy.JsonP',
'Ext.data.Store'
],
defaults: {
styleHtmlContent: true
},
config: {
layout : {
type: 'vbox',
pack : 'center'
},
scrollable: false,
items: [
{
xtype: 'toolbar',
docked: 'top',
title: 'Welcome to MyApp'
},
{
xtype: 'carousel',
flex: 1,
height: 90,
layout: 'fit',
defaults:{
layout:'fit'
},
items:[{
html: 'asdfasdfasdf',
cls: 'card',
height: 60
},{
html: '2asdfasdf',
cls: 'card',
height: 60
}]
},
{
height: 60,
docked: 'bottom',
xtype: 'container',
align: 'middle',
defaults:{
layout: {
align: 'middle',
pack: 'center'
}
},
items: [
{
xtype: 'button',
centered: true,
cls: 'fb_login',
height: 47,
margin: '',
width: 280,
id:'fb_login_button'
}
]
}
]
}
});