Phonegap 插件初始化期间出错
大家好,我正在开发一个应用程序,它检查用户之前是否登录过该应用程序。我将phonegap 与jquery-mobile 结合使用。但是,如果我使用以下代码测试我的应用程序:
var SaveUserStatus = function() {
}
SaveUserStatus.prototype.check = function(succes,fail) {
return PhoneGap.exec(function(args) {
success(args);
}, function(args) {
fail(args);
}, 'SaveUserStatus', 'getUserStatus', '');
}
PhoneGap.addConstructor(function() {
PhoneGap.addPlugin('saveUserStatus', new SaveUserStatus());
PluginManager.addService("SaveUserStatus","net.testing.plugins.SaveUserStatus");
});
我总是收到以下错误消息: “未捕获的类型错误:对象 [对象对象] 没有方法 'hasResource' -phonegap-1.0.0.js:936” 和 “未捕获的类型错误:对象 [对象对象] 没有方法 '添加构造函数'-plugin.js:17 ” 有没有人有同样的错误或看到错误,这很好,因为我对此感到疯狂!
Hey guys i'm workin on an app, which check whether a user has logged in the app before or not. I use phonegap in combination with jquery-mobile. But if i test my app with ripple with the following code:
var SaveUserStatus = function() {
}
SaveUserStatus.prototype.check = function(succes,fail) {
return PhoneGap.exec(function(args) {
success(args);
}, function(args) {
fail(args);
}, 'SaveUserStatus', 'getUserStatus', '');
}
PhoneGap.addConstructor(function() {
PhoneGap.addPlugin('saveUserStatus', new SaveUserStatus());
PluginManager.addService("SaveUserStatus","net.testing.plugins.SaveUserStatus");
});
I get always following error messages:
"Uncaught TypeError: Object [object Object] has no method 'hasResource' - phonegap-1.0.0.js:936" and "Uncaught TypeError: Object [object Object] has no method 'addConstructor' - plugin.js:17
"
Has anyone the same error or see the error, this would be nice because i going crazy with that!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注释掉
在 HTML 文件中
。有关更多信息,请阅读 Dan Silivestru http://ripple.tinyhippos.com/forums/ 的评论6/主题/50
Comment out
in your HTML-File.
For further informations read the comment by Dan Silivestru http://ripple.tinyhippos.com/forums/6/topics/50