美文网首页
处理ios 微信H5页面返回没有刷新的问题(Vue)

处理ios 微信H5页面返回没有刷新的问题(Vue)

作者: yaowangcje | 来源:发表于2021-07-13 11:24 被阅读0次
    mounted(){
        let ua = navigator.userAgent;
        let isIOS = !!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
        let isInWeixin = /micromessenger/.test(ua.toLowerCase());
        if (isIOS && isInWeixin) {
            window.onpageshow = function (event) {
                if (event.persisted) {
                    window.location.reload();
                }
            };
        }
    }
    

    相关文章

      网友评论

          本文标题:处理ios 微信H5页面返回没有刷新的问题(Vue)

          本文链接:https://www.haomeiwen.com/subject/tqnjpltx.html