91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在vue中通過cookie獲取用戶的登錄信息

發布時間:2021-02-18 16:28:21 來源:億速云 閱讀:1201 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關如何在vue中通過cookie獲取用戶的登錄信息,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

思路

  • 進入頁面

  • 若未登錄,跳轉至登陸頁面

  • 若已登錄,從cookie中獲取用戶信息,并執行后續操作

2. 登錄頁面,存入cookie(setCookie)

import {setCookie,getCookie}from 'src/js/cookieUtil'
 methods: {
  async cheack_n_p () {
   if( this.checkCode === this.pwd) {
    this.loginData = await getUserInfo(this.uname, this.pwd, this.adminPhone);
    if (this.loginData.res !== 0) {
     setCookie('userName',this.uname);
     setCookie('userPwd',this.pwd,);
     setCookie('phone',this.uname);
     setCookie('userId',this.loginData.obj.id);
     setCookie('userType',this.loginData.obj.userType);
     setCookie('adminPhone',this.adminPhone);
//    this.$router.go(-1);
     this.$router.replace('/');
    } else {
     alert("驗證碼錯誤!")
    }
   }
  },
  //驗證手機號碼部分
  async sendcode(){
   var pattern = /^0{0,1}(1[0-9][0-9]|15[7-9]|153|156|18[7-9])[0-9]{8}$/,
    str =this.uname;
   if (!pattern.test(str)) {
    alert('請正確輸入手機號!');
    return ;
   }
   this.time=60;
   this.disabled=true;
   this.timer();
   this.checkCode = (await getUserPhoneCode(this.uname)).resMsg;
   // this.checkCode = '123456';
   console.log( this.checkCode)
  },
  timer:function () {
   if (this.time > 0) {
    this.time--;
//         console.log(this.time);
    this.btntxt=this.time+"s后重新獲取";
    setTimeout(this.timer, 1000);
   } else{
    this.time=0;
    this.btntxt="獲取驗證碼";
    this.disabled=false;
   }
  }
 },

2. 頁面判斷

import {setCookie,getCookie}from 'src/js/cookieUtil'
 mounted () {
  if (this.isLogin==undefined||this.isLogin=="") {
   this.$router.replace('/login');
  } else {
   // 執行后續操作
   this.phone = getCookie("phone");
   }
 },
 computed: {
  isLogin () {
   // return this.$store.getters.getLogin;
   this.userId = getCookie("userId");
   // console.log(this.userId);
   return this.userId;
  }
 },

3. cookieUtil(setCookie,getCookie)

/**
 * Created by Schon on 2018/9/13 0013.
 */
//設置cookie
export function setCookie(key,value) {
 var exdate = new Date(); //獲取時間
 exdate.setTime(exdate.getTime() + 24 * 60 * 60 * 1000 * 36500); //保存的天數,我這里寫的是100年
 //字符串拼接cookie
 window.document.cookie = key + "=" + value + ";path=/;expires=" + exdate.toGMTString();
};
//讀取cookie
export function getCookie(param) {
 var c_param = '';
 if (document.cookie.length > 0) {
  var arr = document.cookie.split('; '); //這里顯示的格式需要切割一下自己可輸出看下
  for (var i = 0; i < arr.length; i++) {
   var arr2 = arr[i].split('='); //再次切割
   //判斷查找相對應的值
   if (arr2[0] == param) {
    c_param = arr2[1];
    //保存到保存數據的地方
   }
  }
  return c_param;
 }
};
function padLeftZero (str) {
 return ('00' + str).substr(str.length);
};

上述就是小編為大家分享的如何在vue中通過cookie獲取用戶的登錄信息了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

斗六市| 阿瓦提县| 吐鲁番市| 永兴县| 大足县| 阳山县| 兴山县| 鹤山市| 惠州市| 介休市| 阜康市| 乐陵市| 蛟河市| 雷州市| 通道| 海城市| 翁源县| 宝鸡市| 靖江市| 江油市| 彩票| 尚义县| 沽源县| 泗洪县| 获嘉县| 绥阳县| 江川县| 江城| 谢通门县| 延边| 色达县| 柳江县| 建宁县| 芦溪县| 迭部县| 大英县| 利辛县| 岐山县| 获嘉县| 平泉县| 资溪县|