# iOS 微信长按识别二维码失败,弹出的是保存图片

2019-11-07  本文已影响0人  Zeayal

原因:微信对 vue.js 中的 vue-routerhistory 模式支持并不完善.
解决方案:刷新二维码页面

 // 尝试在页面挂载完成时,刷新页面,解决微信识别二维码失败的问题
 // 当然也可以在 `created` 中使用,按文档 `created` 要比 `mounted` 更先调用
 mounted() {
    const { isReload } = this.$route.query;
    if (!isReload && Object.keys(this.$route.query).length > 0) {
      window.location.replace(`${window.location.href}&isReload=1`);
      return
    }
}

参考资料:
1.https://github.com/xieqingtian/blog/issues/1
2.https://developers.weixin.qq.com/community/develop/doc/0002888c70c200b5fd176eee25b800

上一篇下一篇

猜你喜欢

热点阅读