gpt4 book ai didi

android - 在 Ionic 应用程序中禁用硬件后退按钮?

转载 作者:IT老高 更新时间:2023-10-28 21:53:52 26 4
gpt4 key购买 nike

我正在尝试禁用我的 Cordova 应用程序上的后退按钮。我正在使用 AngularJS + Ionic 框架。我找到了有关此的主题并尝试了下面的代码,但它绝对没有效果。有什么想法吗?

index.html

<head>
<script>
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
document.addEventListener("backbutton", function (e) {
e.preventDefault();
console.log("hello");
}, false );
}
</script>
</head>

请注意,当我按下返回按钮时,我的控制台中会显示“你好”。

最佳答案

终于在this上找到了答案 ionic 论坛主题:

$ionicPlatform.registerBackButtonAction(function () {
if (condition) {
navigator.app.exitApp();
} else {
handle back action!
}
}, 100);

$ionicPlatform.registerBackButtonAction 允许完全覆盖后退按钮的行为。第一个参数是回调函数,第二个参数是优先级(只有最高优先级的回调才会被执行)。

关于android - 在 Ionic 应用程序中禁用硬件后退按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26548418/

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