zoukankan      html  css  js  c++  java
  • vue 微信公众号分享后支付失效页面URL不变的坑

    微信分享后支付页面还是初始页面,这个问题解决了,

    created(){
          //判断是否是IOS设备
          // IOS分享时的页面是首页,也就是进入页而不是当前页。所有可以采用刷新当前页,让进入页的链接改成当前页,再在页面卸载时删除缓存数据。
          let agent = navigator.userAgent
          let isIOS = !!agent.match(/(i[^;]+;( U;)? CPU.+Mac OS X/) // ios终端
          if(isIOS && !sessionStorage.getItem('isShareState')){
            sessionStorage.setItem('isShareState',true)
            this.$router.go(0)
          }
        },

    发现又有另外一个坑,那就是hash 模式下url 参数回默认带回来微信浏览器内带回来的参数

    https://xxx/vipidea-subscribe/index.html?from=singlemessage&isappinstalled=0#/buynew/  类似这种的情况。  
    最终没有办法只能换成history模式了
    换成history 模式build 白屏 这个需要Nginx配置
    补充 history 也有问题只能手动处理自带过来的参数了

    if((window.location.href).indexOf('from')>-1 || (window.location.href).indexOf('isappinstalled')>-1){ console.log('包含',window.location.href,localStorage.getItem('activityId')); window.location.href = window.location.href.split('?')[0]+'#/home/?activityId='+localStorage.getItem('activityId') }
  • 相关阅读:
    MySQL 元数据
    MySQL 复制表
    MySQL 临时表
    MySQL 索引
    MySQL ALTER
    MySQL 事务
    MySQL 正则表达式
    Mysql Join
    Python(数据库之表操作)
    Python知识点复习之__call__
  • 原文地址:https://www.cnblogs.com/wupeng88/p/11802657.html
Copyright © 2011-2022 走看看