ios微信浏览器内vue项目url不改变,但是页面改变

2019-10-25  本文已影响0人  混世魔王的小公举

在路由里面加入后置钩子

router.afterEach((to, from) => {

  const u = navigator.userAgent.toLowerCase()

  if(u.indexOf("like mac os x") < 0 || u.match(/MicroMessenger/i) != 'micromessenger' || u.match(/WebP/i) == "webp") return

  if (to.path !== global.location.pathname) {

    location.assign(to.fullPath)

  }

})

转载 https://blog.csdn.net/danruWang/article/details/88577917

上一篇下一篇

猜你喜欢

热点阅读