屏蔽微信内置底部前进后退按钮(很迫切的需求)

在使用  window.location.href 进行页面跳转或者react内部项目使用 this.props.history.push进行页面跳转时,做好的h5页面放在微信里,底部会出选前进后退的按钮,如下图:

废话不多说,解决问题:

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

第二种情况:react项目内部页面跳转使用 this.props.history.replace  代替 this.props.history.push 

第三张情况:vue项目内部页面跳转使用  this.$router.replace 代替   this.$router.push

猜你喜欢

转载自www.cnblogs.com/lixz/p/11400160.html
今日推荐