溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

利用vue怎么將生成的token保存到localStorage

發(fā)布時(shí)間:2021-01-16 10:48:08 來(lái)源:億速云 閱讀:686 作者:Leah 欄目:web開(kāi)發(fā)

利用vue怎么將生成的token保存到localStorage?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

其實(shí)就向clients(理解為用戶表即可)里面去生成一個(gè)token 

利用vue怎么將生成的token保存到localStorage

利用vue怎么將生成的token保存到localStorage 

這里的client_appid 就相當(dāng)于用戶名,client_appkey 就相當(dāng)于密碼。 

這樣后端認(rèn)證之后會(huì)生成一個(gè)access-token,我們需要把這個(gè)access-token 保存在客戶端。

注意:我們前端一般部署在另外的服務(wù)器上,會(huì)跨域,后端要處理跨域的問(wèn)題,在PHP中可以寫上如下代碼:

//指定允許其他域名訪問(wèn)
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: GET,POST");
header('Access-Control-Allow-Headers: X-Requested-With,content-type,if-modified-since');

前端的套路

注意,我們項(xiàng)目既然早已用上了VueX,那么我肯定就要在Store(vuex里的概念)里面來(lái)創(chuàng)建一個(gè)module。 

利用vue怎么將生成的token保存到localStorage

我們新建了一個(gè)UsersModule.js 來(lái)處理用戶登錄的業(yè)務(wù),注意不要忘記在入口文件users-index.js 中引入。如果我們的『會(huì)員后臺(tái)』也需要用戶相關(guān)數(shù)據(jù),也要引入。 

users-index.js 里修改:

//引入模塊
import ResModule from './../Store/modules/ResModules';
import UsersModule from "./../Store/modules/UsersModule";
const vuex_config = new Vuex.Store({
 modules: {
  res:ResModule,
  users:UsersModule
 }
});

1、UsersModule.js

import Vue from "vue";

export default {
 state:{
  currentUser:{
   get UserName(){
    return localStorage.getItem("currentUser_name");
   },
   get UserToken(){
    return localStorage.getItem("currentUser_token");
   }
  }
 },
 mutations:{
  setUser(state,{user_name,user_token}){
   // 在這里把用戶名和token保存起來(lái)
   localStorage.setItem("currentUser_name",user_name);
   localStorage.setItem("currentUser_token",user_token);
  }
 },
 actions:{
  userLogin(context,{user_name,user_pass}){
   // 發(fā)送get請(qǐng)求做權(quán)限認(rèn)證(真實(shí)開(kāi)發(fā)建議用post的方式)
   let url = "http://localhost/yiiserver/web/index.php/token?client_appid="+user_name+"&client_appkey="+user_pass;
   console.log(url);

   Vue.http.get(url)
    .then((res)=>{
     if (res!=null && res.body!=undefined && "access-token" in res.body){
      var token = res.body["access-token"];
      if (token != ""){
       // 后端API驗(yàn)證通過(guò)
       // 調(diào)用上面mutations里定義的方法
       context.commit("setUser",{"user_name":user_name,"user_token":token});
      }
     }else{
      alert("用戶名密碼錯(cuò)誤");
     }
    },(res)=>{
     alert("請(qǐng)求失敗進(jìn)入這里")
    });
  }
 }
}

actions部分:我們寫了一個(gè)userLogin()方法,來(lái)發(fā)送http請(qǐng)求后端服務(wù)器,請(qǐng)求成功返回的數(shù)據(jù)調(diào)用在mutations部分定義的setUser()方法保存到客戶端。 

注意:actions里的userLogin()方法,是供在用戶登錄頁(yè)調(diào)用的,也就是userslogin.vue里。 

所以來(lái)到userlogin.vue,修改如下代碼:

我們來(lái)測(cè)試一下,有沒(méi)有成功保存到客戶端的localStorage 中: 

  methods:{
   login(){

    // 這個(gè)驗(yàn)證是element-ui框架提供的方法
    this.$refs["users"].validate(function (flag) {
     if(flag){
      /*localStorage.setItem("currentUser",this.UserModel.user_name);
      alert("用戶登錄成功");*/

      this.$store.dispatch("userLogin",{"user_name":this.UserModel.user_name,"user_pass":this.UserModel.user_pass})
     }else{
      alert("用戶名密碼必填");
     }
    }.bind(this));
   }
  }

利用vue怎么將生成的token保存到localStorage

2、如果我們的會(huì)員后臺(tái) 

http://localhost:8080/member 

也需要獲取用戶的登錄信息,比如用戶名。來(lái)顯示到導(dǎo)航欄上。

首先是應(yīng)該在會(huì)員后臺(tái)模塊的入口文件member-index.js中:

//引入Module
import ResModule from './../Store/modules/ResModules';
import UsersMoule from "./../Store/modules/UsersModule";
const vuex_config = new Vuex.Store({
 modules: {
  res:ResModule,
  users:UsersMoule
 }
});

然后我們就可以在,比如導(dǎo)航欄組件navbar.vue中:

<a href="##" rel="external nofollow" >{{this.$store.state.users.currentUser.UserName}}</a>

通過(guò)這樣的方式,訪問(wèn)users里的屬性。 

利用vue怎么將生成的token保存到localStorage

看完上述內(nèi)容,你們掌握利用vue怎么將生成的token保存到localStorage的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI