我在 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