vue实现app移动端Android监听物理返回键
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue实现app移动端Android监听物理返回键相关的知识,希望对你有一定的参考价值。
参考技术A 1.mounted中注册监听方法://监听返回键
if (window.history && window.history.pushState)
history.pushState(null, null, document.URL);
window.addEventListener('popstate', this.backButton, false);//false阻止默认事件
2.methods中写方法的实现:
backButton () //点击返回键时实现的业务逻辑
,
3.在destroyed中写:(退出页面时销毁监听事件,防止其他页面使用)
destroyed ()
window.removeEventListener('popstate',this.backButton,false);//false阻止默认事件
,
以上是关于vue实现app移动端Android监听物理返回键的主要内容,如果未能解决你的问题,请参考以下文章