方法一: 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;
});
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)