您好,登錄后才能下訂單哦!
這篇文章主要介紹如何解決vue單頁面在微信下只能分享落地頁的問題,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
實際上關鍵詞叫 微信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 隨意。
以上是“如何解決vue單頁面在微信下只能分享落地頁的問題”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。