首页 > UniApp UniApp
UniApp中监听tarBar返回
2021-07-07 UniApp 3499人已围观 0 收藏
简介在uniapp应用的非首页的tabBar页面中,监听返回
在非首页的tabBar页面中,监听返回,返回首页而不是直接退出。只需要在onShow方法中加入以下代码即可:
window.history.pushState(null, null, "#"); window.addEventListener("popstate", function(){ uni.navigateBack({ delta:1 }); }, false)