• 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') }
  • 相关阅读:
    Performance and Design
    返回数组中不重复的元素
    IE的button元素bug
    (转)Google Closure: 糟糕的JavaScript
    Why do we have an IMG element?
    About this and that
    C#中的Attribute
    C#检查字体是否存储,以及安装
    ZipFile压缩文件后,解压文件后有多层目录的处理方法
    Office系列在线预览
  • 原文地址:https://www.cnblogs.com/wupeng88/p/11802657.html
Copyright © 2020-2023  润新知