原因:微信对
vue.js
中的vue-router
的history
模式支持并不完善.
解决方案:刷新二维码页面
// 尝试在页面挂载完成时,刷新页面,解决微信识别二维码失败的问题
// 当然也可以在 `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
网友评论