最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue通過cookie獲取用戶登錄信息的思路詳解

 更新時間:2018年10月30日 11:17:03   作者:Schon_zh  
這篇文章主要介紹了vue通過cookie獲取用戶登錄信息的思路詳解,本文通過實例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價值,需要的朋友可以參考下

思路

  • 進(jìn)入頁面
  • 若未登錄,跳轉(zhuǎn)至登陸頁面
  • 若已登錄,從cookie中獲取用戶信息,并執(zhí)行后續(xù)操作

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("驗證碼錯誤!")
    }
   }
  },
  //驗證手機(jī)號碼部分
  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('請正確輸入手機(jī)號!');
    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 {
   // 執(zhí)行后續(xù)操作
   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.
 */
//設(shè)置cookie
export function setCookie(key,value) {
 var exdate = new Date(); //獲取時間
 exdate.setTime(exdate.getTime() + 24 * 60 * 60 * 1000 * 36500); //保存的天數(shù),我這里寫的是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('='); //再次切割
   //判斷查找相對應(yīng)的值
   if (arr2[0] == param) {
    c_param = arr2[1];
    //保存到保存數(shù)據(jù)的地方
   }
  }
  return c_param;
 }
};
function padLeftZero (str) {
 return ('00' + str).substr(str.length);
};

總結(jié)

以上所述是小編給大家介紹的vue通過cookie獲取用戶登錄信息的思路詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評論

永德县| 原平市| 金湖县| 县级市| 修水县| 平昌县| 清水县| 张北县| 鄄城县| 谷城县| 凤凰县| 即墨市| 涡阳县| 九寨沟县| 南宁市| 成武县| 睢宁县| 博乐市| 沁源县| 平罗县| 南江县| 淮北市| 汾西县| 温泉县| 漯河市| 扬中市| 岳普湖县| 尼勒克县| 宁国市| 雷山县| 伊春市| 独山县| 威宁| 荥经县| 阿克陶县| 抚顺市| 英德市| 酉阳| 应城市| 县级市| 乌鲁木齐县|