vue跳转原生界面,再从原生界面返回,重新进行操作
2021-08-13 本文已影响0人
_相信未来_
在项目中,有一个需求是从vue界面跳转到原生界面,从原生界面返回后,再次调用原生的某个方法,由于是vue初学,查了很久用了这种方式实现
document.addEventListener('visibilitychange', this.handleVisiable);
handleVisiable(e){
if (e.target.visibilityState === 'visible'){
//跳转返回
}
}
destroyed(){
document.removeEventListener('visibilitychange', this.handleVisiable);
}