其他分享
首页 > 其他分享> > vue保存及使用cookieStore

vue保存及使用cookieStore

作者:互联网

vue保存及使用cookieStore

1.定义

在这里插入图片描述
utils/common.js

//获取cookie、
export function getCookie(name) {
    var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
    if (arr = document.cookie.match(reg))
        return (arr[2]);
    else
        return null;
}

//设置cookie,增加到vue实例方便全局调用
export function setCookie(c_name, value, expiredays) {
    var exdate = new Date();
    exdate.setDate(exdate.getDate() + expiredays);
    document.cookie = c_name + "=" + escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString());
};

//删除cookie
export function delCookie(name) {
    var exp = new Date();
    exp.setTime(exp.getTime() - 1);
    var cval = getCookie(name);
    if (cval != null)
        document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString();
};

export default {
    getCookie,
    setCookie,
    delCookie,
}

2.全局

main.js

import cookieStore from '@/utils/common';
Vue.prototype.$cookieStore = cookieStore;

3。获取

在App.vue

<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
    export default {
        name: 'App',
        created() {
    //初始化全局截取 集成框架url,获取字符串?后面的东西
    if (window.location.hash.split("userId")[1] !== undefined) {
      let  userIdCom= window.location.hash.split("userId")[1].split("=")[1];
      console.log("获取到userId",window.location.hash.split("userId")[1],userIdCom);
      this.$cookieStore.setCookie("userIdCom", JSON.stringify(userIdCom));//userIdCom
      sessionStorage.setItem("common", JSON.stringify(userIdCom));
    } else {
        console.log("没有获取到userId");
    }
  }
    }
</script>

<style lang="scss">
    .app-container {
        background-color: #eff3f6;
        width: 100%;
    }
    ::-webkit-scrollbar {
    width: 9px;
    height: 4px;
}
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.1);
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0,0,0,0.0);
}
</style>

4.使用

import cookieStore from "@/utils/common";
JSON.parse(unescape(cookieStore.getCookie("userIdCom")))//userIdCom

标签:vue,name,userId,userIdCom,保存,cookie,cookieStore,export
来源: https://blog.csdn.net/ingenuou_/article/details/121442356