码迷,mamicode.com
首页 > 微信 > 详细

ios微信分享的兼容性问题

时间:2019-06-21 12:27:46      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:col   href   ima   sig   等价   需要   mac   ext   微信分享   

我微信分享采用的是: 页面初始化时动态加载js-sdk, 然后在需要分享的页面进行sdk的分享初始化

app.vue

技术图片

store.vue

技术图片

这种方法在安卓上完全正常, 好用得令人发指, 但是!!!

ios却不是省油灯

ios的分享 参数都没带上来 链接是第一次进入的页面 !

破案 ->

IOS:每次切换路由,SPA的url是不会变的,发起签名请求的url参数必须是当前页面的url就是最初进入页面时的url

Android:每次切换路由,SPA的url是会变的,发起签名请求的url参数必须是当前页面的url(不是最初进入页面时的)

解决方法 ->

main.js

 1 router.beforeEach((to, from, next) => {
 2   const agent = navigator.userAgent;
 3   const isiOS = !!agent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); // ios终端
 4   if (isiOS && to.path !== location.pathname) {
 5     // 此处不可使用location.replace
 6     location.assign(to.fullPath)
 7   } else {
 8     next()
 9   }
10 });

ios切换路由, url不是不会变吗, 我们就在路由守卫里面每次都帮他变一下

by the way !!   

location.assign(url)    等价于      location.href = url;

 

ios微信分享的兼容性问题

标签:col   href   ima   sig   等价   需要   mac   ext   微信分享   

原文地址:https://www.cnblogs.com/spotman/p/11063616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!