用户跳转公众号,获取链接(url)里面的code,截取字符串

1.url为以下形式,参数在hash值后面

 https://xxx.xxx.xxx/home/message/detail?code=666&title=111

 https://xxx.xxx.xxx/#/home/message/detail?code=666&title=111

获取code

this.$route.query.id

this.$route.query.title

2.url为以下形式,参数在hash值前面

 https://xxx.xxx.xxx/?code=666&title=111#/home/message/detail

获取code


// 截取字符串 封装函数
  function getParams(url) {
    // console.log("url",url);
    let obj = {};
    let index = url.indexOf('?'); // 看url有没有参数
    // console.log("index",index);
    let params = url.substr(index + 1); // 截取url参数部分 id = 1 & type = 2
    //console.log(params);
    if (index != -1) { // 有参数时
      let parr = params.split('&');  // 将参数分割成数组 ["id = 1 ", " type = 2"]
      for (let i of parr) {           // 遍历数组
        let arr = i.split('=');  // 1) i id = 1   arr = [id, 1]  2)i type = 2  arr = [type, 2]
        obj[arr[0]] = arr[1];  // obj[arr[0]] = id, obj.id = 1   obj[arr[0]] = type, obj.type = 2
      }
    }
    return obj;
  };

  // 截取 参数为一个对象
  let obj = this.getParams(window.location.href)
  // console.log("路由参数", obj);
  //获取对象里面的code值
  let wxCode = obj.code;
  // console.log(wxCode);
  // wxCode为最终截取的code值!!!!!!!!!!!!!!!!!!!!!!!!

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值