gpt4 book ai didi

angularjs - PhoneGap 2.8.0 使用 angular-mobile-nav 提升 "no method ' overrideBackbutton'"

转载 作者:行者123 更新时间:2023-12-05 00:29:26 24 4
gpt4 key购买 nike

我在使用 Ripple Emulator 的 Cordova 2.8 Android 项目的初始页面加载时遇到了 angular-mobile-nav 问题。我得到的错误是:

TypeError: Object #<Object> has no method 'overrideBackbutton'
at module.exports.exec (chrome-extension://geelfhphabnejjhdalkjhgipohgpdnoc/ripple.js:40:22917)
at backButtonChannel.onHasSubscribersChange (http://localhost:8076/cordova.js:1145:13)
at Channel.subscribe (http://localhost:8076/cordova.js:667:49)
at HTMLDocument.document.addEventListener (http://localhost:8076/cordova.js:132:34)
at null.<anonymous> (http://localhost:8076/components/mobile-nav/mobile-nav.js:11:14)
at Channel.fire (http://localhost:8076/cordova.js:709:23)
at http://localhost:8076/cordova.js:232:47

基本上,这是由 mobile-nav.js 第 11 行引起的: document.addEventListener("backbutton", function() {
来自第 1145 行的 cordova.js 调用引发的错误: exec(null, null, "App", "overrideBackbutton", [this.numHandlers == 1]);
这是一个可以复制的问题吗?任何帮助将不胜感激。

最佳答案

我在 Phonegap 2.5.0 中使用 Ripple 时第一次遇到这个问题。正如您所指出的,在适用于 Android 的 cordova-2.8.0.js 的第 1145 行,它假定在 Android 平台上运行,因此调用了 Ripple 没有 stub 的 native 函数 App.overrideBackbutton()。

因为它只在附加/分离第一个处理程序时调用这个,我通过欺骗 Ripple 认为已经有多个处理程序来解决这个问题:

<html>
<head>
<script type="text/javascript" charset="utf-8" src="cordova-2.8.0.js"></script>
<script type="text/javascript" charset="utf-8" src="jquery-1.7.1.min.js"></script>

<script type="text/javascript">
_IS_RIPPLE_EMULATOR = $('#tinyhippos-injected').length > 0;

function deviceready() {
// Make ripple think that a back button handler has already been attached
if(_IS_RIPPLE_EMULATOR) cordova.addDocumentEventHandler('backbutton');

document.addEventListener("backbutton", function(){
alert("Pressed back");
});

}
document.addEventListener("deviceready", deviceready, true);
</script>
</head>
<body></body>
</html>

关于angularjs - PhoneGap 2.8.0 使用 angular-mobile-nav 提升 "no method ' overrideBackbutton'",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17250796/

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