gpt4 book ai didi

android - Sencha 触摸 : unable to call superclass error

转载 作者:行者123 更新时间:2023-11-29 22:22:22 25 4
gpt4 key购买 nike

我一直在尝试使用以下代码(在 app/view/viewport.js 中)扩展 Ext.Panel:

App.views.Viewport = Ext.extend(Ext.Panel, {
fullscreen: true,

initComponent: function() {
App.views.Viewport.superclass.initComponent.apply(this, arguments);
}
});

此代码是从 (app/app.js) 调用的:

App = new Ext.Application({
name: 'App',
launch: function() {
this.launched = true;
this.mainLaunch();
},
mainLaunch: function() {
if (!device || !this.launched) {return;}
this.views.viewport = new this.views.Viewport();
}
});

整个事情在桌面上运行得很好,但是当 phonegap (0.9.6) 被投入方程式并部署在 Android 设备上时,我收到以下错误(在 LogCat 中):

Uncaught TypeError: Cannot read property 'superclass' of undefined at file:///android_asset/www/app/views/viewport.js

我已经调查这件事好几个小时了,一点进展都没有!非常感谢您的帮助

最佳答案

Android 上的 PhoneGap 自己创建了一个名为“app”的对象,该对象与您的命名空间冲突。将您的“应用程序”重命名为其他名称,它应该可以工作。

参见 http://www.codesta.com/blog/2011/5/23/sencha-touchphonegap-tips-and-tricks.html

关于android - Sencha 触摸 : unable to call superclass error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6806983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com