最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

vue生成token保存在客戶端localStorage中的方法

來源:懂視網 責編:小采 時間:2020-11-27 22:27:10
文檔

vue生成token保存在客戶端localStorage中的方法

vue生成token保存在客戶端localStorage中的方法:前面我們已經了解了可以通過localStorage在客戶端(瀏覽器)保存數據。 我們后端有這樣一個接口: http://localhost/yiiserver/web/index.php/token?client_appid=aaa&client_appkey=bbb 其實就向clients(理解為用戶表即可)里
推薦度:
導讀vue生成token保存在客戶端localStorage中的方法:前面我們已經了解了可以通過localStorage在客戶端(瀏覽器)保存數據。 我們后端有這樣一個接口: http://localhost/yiiserver/web/index.php/token?client_appid=aaa&client_appkey=bbb 其實就向clients(理解為用戶表即可)里

前面我們已經了解了可以通過localStorage在客戶端(瀏覽器)保存數據。

我們后端有這樣一個接口:

http://localhost/yiiserver/web/index.php/token?client_appid=aaa&client_appkey=bbb

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

這里寫圖片描述

這里寫圖片描述 

這里的client_appid 就相當于用戶名,client_appkey 就相當于密碼。 

這樣后端認證之后會生成一個access-token,我們需要把這個access-token 保存在客戶端。

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

//指定允許其他域名訪問
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');

前端的套路

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

這里寫圖片描述

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

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保存起來
 localStorage.setItem("currentUser_name",user_name);
 localStorage.setItem("currentUser_token",user_token);
 }
 },
 actions:{
 userLogin(context,{user_name,user_pass}){
 // 發(fā)送get請求做權限認證(真實開發(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驗證通過
 // 調用上面mutations里定義的方法
 context.commit("setUser",{"user_name":user_name,"user_token":token});
 }
 }else{
 alert("用戶名密碼錯誤");
 }
 },(res)=>{
 alert("請求失敗進入這里")
 });
 }
 }
}

actions部分:我們寫了一個userLogin()方法,來發(fā)送http請求后端服務器,請求成功返回的數據調用在mutations部分定義的setUser()方法保存到客戶端。 

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

所以來到userlogin.vue,修改如下代碼:

我們來測試一下,有沒有成功保存到客戶端的localStorage 中: 

 methods:{
 login(){

 // 這個驗證是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));
 }
 }

這里寫圖片描述

2、如果我們的會員后臺 

http://localhost:8080/member 

也需要獲取用戶的登錄信息,比如用戶名。來顯示到導航欄上。

首先是應該在會員后臺模塊的入口文件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
 }
});

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

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

通過這樣的方式,訪問users里的屬性。 

這里寫圖片描述

聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

vue生成token保存在客戶端localStorage中的方法

vue生成token保存在客戶端localStorage中的方法:前面我們已經了解了可以通過localStorage在客戶端(瀏覽器)保存數據。 我們后端有這樣一個接口: http://localhost/yiiserver/web/index.php/token?client_appid=aaa&client_appkey=bbb 其實就向clients(理解為用戶表即可)里
推薦度:
標簽: 保存到 生成 VUE
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top