今天在開發(fā)項目中發(fā)現(xiàn)在android某一機型的微信環(huán)境下window.location.reload()不起作用国章。解決方法在當(dāng)前鏈接后增加一個隨機參數(shù)然后使用location.replace替換特咆。最終成功解決。
【必須要加上隨機參數(shù)否則不起作用】
let href = window.location.href;
href += (href.indexOf('?') > -1 ? '&' : '?') + `_t=${(Math.random() + '').replace('.', '')}`
window.location.replace(href);