zoukankan      html  css  js  c++  java
  • vue.js设置、获取、删除cookie

     

     项目需要前端获取后台返回的cookie,并以此作判断。我是在main.js入口文件下使用的

    具体代码:

    new Vue({
    el: '#app',
    router,
    template: '<App/>',
    components: { App },
    methods:{

    //读取cookie,需要注意的是cookie是不能存中文的,如果需要存中文,解决方法是后端先进行编码encode(),前端取出来之后用decodeURI('string')解码。(安卓可以取中文cookie,IOS不行)
        getCookie(name) {
            var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
            if (arr = document.cookie.match(reg)){
            return true;
           // return (arr[2]);
          }else{
          return false
         }
    },

    //设置cookie   name为cookie的名字,value是值,expiredays为过期时间(天数)
       setCookie (name, value, expiredays) {
         var exdate = new Date();
         exdate.setDate(exdate.getDate() + expiredays);
        document.cookie = c_name + "=" + escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString());
       },

     //删除cookie

       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();
       }

    },
    created(){
       this.setCookie('openId',123,2)
       if (this.getCookie('openId')) {
       console.log('has cookie')

      this.delCookie ('openId')
       }else{
       console.log('has not cookie')
       }
    }
    })

  • 相关阅读:
    GuavaCache简介(一)
    四层、七层负载均衡的区别
    腾讯云服务器 Centos6.5 安装 nginx1.12.0
    tomcat8性能优化
    JAVA 正则表达式的三种模式: 贪婪, 勉强和占有的讨论
    java中值传递和引用传递
    架构师书籍
    大型网站架构系列:20本技术书籍推荐
    RabbitMQ
    支付宝付款流程
  • 原文地址:https://www.cnblogs.com/web-chuanfa/p/9239761.html
Copyright © 2011-2022 走看看