我是sencha touch的新手。所以我只是尝试this article的代码 问题是,当我运行此代码时,它会出现此错误:
未捕获的TypeError:undefined不是函数(TouchStart.js:2)
TouchStart.js :
// JavaScript Document
new Ext.Application({
name: 'Chat',
launch: function() {
var hello = new Ext.Container({
fullscreen: true,
html: '<div id="hello">Hello World</div>'
});
this.viewport = hello;
}
});
我尝试this但未找到解决方案。那有什么问题?提前谢谢。
答案 0 :(得分:1)
试试此代码
// JavaScript Document
new Ext.Application({
name: 'Chat',
launch: function() {
var hello = new Ext.Container({
fullscreen: true,
html: '<div id="hello">Hello World</div>'
});
Ext.Application.viewport = hello;
}
});