zoukankan      html  css  js  c++  java
  • 小程序跳转进入H5页面,全局读取token

    嘿嘿嘿,最近在做的一个项目,小程序嵌套H5页面,小程序登录带token跳转进入h5,也不能在每个页面都要设置一个方法读取url的token,就想在项目入口APP.vue或者main.js那一次性读取token然后存储到本地存储。

    首先创建一个js文件,

    然后咧,我们在main.js中引入,并且把getUrlKey('token')字样写入本地存储,因为我url上拼接的字样就是 http://?id=334455&token=243566422323isdjsj;

    上面用到的关键代码:

    const getUrlKey=function(name) {
        // console.log('Dx',name)
     return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ""])[1].replace(/+/g, '%20')) || null
      };
      export default getUrlKey
  • 相关阅读:
    H
    饭卡(0 1背包)
    J
    H
    E
    3991: [SDOI2015]寻宝游戏
    CF 1051 F. The Shortest Statement
    CF 643 E. Bear and Destroying Subtrees
    4567: [Scoi2016]背单词
    4946: [Noi2017]蔬菜
  • 原文地址:https://www.cnblogs.com/huangla/p/14824537.html
Copyright © 2011-2022 走看看