Vue IOS端跳转后返回页面不刷新问题解决

Vue IOS端跳转后返回页面不刷新问题解决,第1张

方法一: we码用了,生效

mounted () {
    this.$nextTick(()=>{
    //首页跳转至门诊或者商城返回 IOS不兼容页面自动刷新问题
    var u = navigator.userAgent,
    app = navigator.appVersion;
    var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1; //android终端或者uc浏览器
    var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
    if(isiOS){
      window.onpageshow = function(event) {
      if (event.persisted) {
          window.location.reload()
      }
      };
    }
    })
  },

方法二:

mounted(){
    var _this = this;
    window.addEventListener('pageshow',function(){
      if(_this.isPageHide) {
        window.location.reload();
      }
    });
    window.addEventListener('pagehide', function(){
      _this.isPageHide = true;
    });
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/993434.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存