安卓微信v7.0.4,触发popState网页会刷新
安卓,微信__v7.0.4__,网页开发,先pushState(),当触发popState时,网页会刷新。
微信__v7.0.3__无此问题。
5 回复
目前只能用hack方法。我是这么做的,首页读取完毕后。replaceState一次
window.onload = function (){ var u = navigator.userAgent if (window.history.length === 1 && u.indexOf( 'MicroMessenger' ) > -1) { setTimeout( function (){ window.history.replaceState( null , null , '#' ) }, 100) } } |
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)