屏蔽微信内置底部前进后退按钮

798 阅读1分钟

第一种情况:只是页面之间跳转,使用 window.location.replace 代替window.location.href,亲测有效

第二种情况:React 页面跳转使用 this.props.history.replace 代替 this.props.history.push 

第三张情况:Vue 页面跳转使用 this.$router.replace 代替 this.$router.push