我在Sencha Touch的这部分JavaScript代码中遇到了一些问题,我不知道如何解决它。
new Ext.application({
name: 'TouchStart',
launch: function() {
this.viewport = new Ext.Panel({
fullscreen: true,
bodyPadding: 5,
dockedItems: [ {
dock : 'top',
xtype: 'toolbar',
title: 'Touch Start'
}, {
dock : 'top',
xtype: 'toolbar',
items: [{
text: 'Hello Button'
}]
}],
html: 'Hello Panel'
});
}
});
控制台显示:
This.viewport = new Ext.Panel({
> Uncaught TypeError: undefined is not a function
答案 0 :(得分:0)
萨拉姆
您必须将代码Ext.Panel
更改为
Ext.create('Ext.Panel',...........