vue单页面在微信下只能分享落地页的解决方案
程序员文章站
2022-08-18 15:49:57
实际上关键词叫 微信pushstate只能分享落地页 更贴切一点
应用场景:
vue + vue-router
vue-router使用hash模式(hi...
实际上关键词叫 微信pushstate只能分享落地页 更贴切一点
应用场景:
- vue + vue-router
- vue-router使用hash模式(history模式没试过)
- 不使用微信的js-sdk(因为我这个项目是可配置域名的商城,比较特殊,不能使用微信sdk)
这个方案并不是最优秀的,会对性能造成一定的影响
html5 history.pushstate
vue-router的内部是通过 history.pushstate 和 history.replacestate 实现的。但是ios设备的微信浏览器不会去检测它们的变化。但是我们可以通过更新 location.href 让微信浏览器识别到当前的url。
// vue-router/src/util/push-state.js export function pushstate (url?: string, replace?: boolean) { savescrollposition() // try...catch the pushstate call to get around safari // dom exception 18 where it limits to 100 pushstate calls const history = window.history try { if (replace) { history.replacestate({ key: _key }, '', url) } else { _key = genkey() history.pushstate({ key: _key }, '', url) } } catch (e) { window.location[replace ? 'replace' : 'assign'](url) } } export function replacestate (url?: string) { pushstate(url, true) }
解决方法
window.location.href = window.location.href
,这段代码可以让微信记录当前的url,且不会刷新页面。可以在app.vue中 watch $route 在每次页面更新的时候执行一次。
// app.vue watch: { $route: { immediate: true, deep: true, handler(to) { // 微信浏览器判断 const wechat_browser = navigator.useragent.tolowercase().includes('micromessenger') // 解决ios微信浏览器分享地址只能是落地页的问题,这个操作是不会刷新页面的,query参数改变也会执行 if (wechat_browser) { // eslint-disable-next-line window.location.href = window.location.href } } },
使用了上述方法可以解决这个问题,但是这会引出一个很奇葩的问题,在真机上进入 http://192.168.1.5:8080 和 http://192.168.1.5:8080/#/ 这两个页面,其中有一个链接的bug依然存在。原因具体不清楚,经过测试可以在入口文件(main.js)中在页面还没有展示内容前刷新一次页面,即可解决这个问题。
// main.js // 微信浏览器判断 const wechat_browser = navigator.useragent.tolowercase().includes('micromessenger') // 在url插入的search参数,可以随意,但是必须要 // 例:http://192.168.1.5:8080/?_wx_=1#/ const wxquery = '_wx_=1' const isrepeatquery = location.search.includes(wxquery) if (wechat_browser && !isrepeatquery) { const unit = (location.search && location.search !== '?') ? '&' : '?' location.search += unit + wxquery // 添加_wx_参数,该操作会刷新页面 }
上面的代码之所以要在 hash 前面加一个 ?_wx_=1 参数,为了方便刷新页面给一个标志位判断是否已刷新。参数的 key-value 随意。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 又换了一种丑法
下一篇: 尉迟恭在正史上有妻子吗?她是什么人?