美文网首页
vue实现app移动端Android监听物理返回键

vue实现app移动端Android监听物理返回键

作者: 遇而记起 | 来源:发表于2021-04-26 14:46 被阅读0次

只需3步即可监听物理返回键:

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监听物理返回键

      本文链接:https://www.haomeiwen.com/subject/fklerltx.html