我已经从https://github.com/senchalearn/phonegapcontacts/tree/1_basic_structure复制了 WWW 文件夹,现在我无法运行该应用程序。(我只是得到一个可以滚动的空白屏幕)
但是,当我编辑时app.js
,会出现一个白屏,但它保持静止。
我已更改Ext.regApplication
为Ext.application
,我得到白色静态屏幕和以下错误
[INFO] 成功回调错误:NetworkStatus0 = ReferenceError:找不到变量:views
我的app.js
文件如下。
Ext.application({
name: 'app',
launch: function() {
this.launched = true;
this.mainLaunch();
},
launch: function() {
this.view.ViewPort = new this.view.Viewport();
}
});
Google 建议可能在 app.js 中使用了一种已弃用的方法。