【发布时间】:2020-09-14 02:28:09
【问题描述】:
我正在使用 angular 7 和 ionic 5。当我想使用硬件后退按钮重定向到上一页时,离子应用程序正在自行关闭。我正在使用下面的代码,但它不起作用。
this.platform.backButton.subscribeWithPriority(9999, () => {
document.addEventListener('backbutton', function (event) {
event.preventDefault();
event.stopPropagation();
console.log('hello');
}, false);
});
【问题讨论】: