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')
       }
    }
    })

  • 相关阅读:
    事件的记忆碎片
    委托的记忆碎片
    Jquery的集合方法EACH()
    sql server中的 SET NOCOUNT ON 的含义
    nyist 299 Matrix Power Series
    poj 1061 青蛙约会
    nyist 488 素数环
    nyist 301 递推求值
    nyist 95 众数问题
    nyist 640 Geometric sum
  • 原文地址:https://www.cnblogs.com/web-chuanfa/p/9239761.html
Copyright © 2011-2022 走看看