在使用 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