代码:
var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname +"?"+ queryStr;
window.history.pushState({path:newurl},'',newurl)
当前情况:
每次调用 window.history.pushState()
时,都会快速发出favicon请求。每次调用此函数时都会向网络请求图标。
预期方案:
favicon只能在页面加载时加载一次,我不希望每次 window.history.pushState()
的请求都加载favicon。
favicon路径在HTML页面中是这样的链接:
<!-- Favicon -->
<link rel="icon" type="image/png" href="../img/icon/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="../img/icon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="../img/icon/favicon-96x96.png" sizes="96x96">
任何直接的帮助都会非常值得注意。感谢