Phonegap 插件初始化期间出错

发布于 2024-12-01 08:41:27 字数 776 浏览 0 评论 0原文

大家好,我正在开发一个应用程序,它检查用户之前是否登录过该应用程序。我将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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

起风了 2024-12-08 08:41:27

注释掉

<script type="text/javascript" charset="utf-8" src="phonegap-1.1.0.js"></script>

在 HTML 文件中

。有关更多信息,请阅读 Dan Silivestru http://ripple.tinyhippos.com/forums/ 的评论6/主题/50

Comment out

<script type="text/javascript" charset="utf-8" src="phonegap-1.1.0.js"></script>

in your HTML-File.

For further informations read the comment by Dan Silivestru http://ripple.tinyhippos.com/forums/6/topics/50

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文