首頁 > 軟體

Vue專案如何保持使用者登入狀態(localStorage+vuex重新整理頁面後狀態依然保持)

2022-05-14 13:01:16

前言

在前端專案開發中,實現使用者的登陸註冊功能時常常會有一個問題,那就是我們設定的登入狀態,在瀏覽器頁面重新整理後就消失了,這其實只是因為我們沒有儲存使用者狀態。

這裡小馬演示使用的是 localStorage + vuex 方法(其他諸如 sessionStorage、cookie 等用法相同,只是功能有所區別)。 

一、實現效果

實現功能:使用者登入成功後,重新整理瀏覽器頁面或者關閉瀏覽器再次開啟網頁後,登入狀態依然保持,直到使用者點選登出。

二、實現步驟及涉及要點

1. 首先在 vuex 中的 state 屬性中新增一個空物件 userInfo{ } 用於儲存使用者登入後的狀態;

涉及要點:

state 屬性(狀態)用於新增多個元件共用的變數,作用類似於 vue 中的 data;

2. 在登入頁面中,判斷登入成功後建立物件 userInfo{ },並新增描述登入狀態的各屬性,然後將該物件分別存入 localStorage 和 vuex; 

涉及要點:

  • localStorage 屬性允許存取 Document 源的 Storage 物件,儲存的資料儲存在瀏覽器對談中;
  • 與 sessionStorage 的唯一區別就是 localStorage 屬於永久性儲存,除非我們手動清除,而 sessionStorage 屬於臨時儲存,瀏覽器關閉後便會被清空。
    • 存:localStorage.setItem('myCat', 'Tom');
    • 取:var cat = localStorage.getItem("myCat");
    • 刪:localStorage.removeItem("myCat"); 或 localStorage.clear("myCat");
  • JSON.stringify() 系列化物件,將返回的物件型別轉為字串型別;
  • this.$store.state,取 vuex 中 state 中的屬性,如:
    • this.$store.state.userInfo = userInfo //取出 vuex 中的 userInfo 並賦值為新的 userInfo

3. 在掛載階段,判斷登入狀態 userInfo;設定相關屬性之後,就可以正常儲存登入狀態了。

因為 localStorage 為永久儲存,所以即使關閉瀏覽器再次開啟網頁登入狀態依然存在,除非手動清除 localStorage 資料;

4. 設定登出,清除 localStorage 中的資料;

5. 實現功能。

三、涉及程式碼

vuex(store/index.js)

import Vue from 'vue'
import Vuex from 'vuex'
 
Vue.use(Vuex)
 
export default new Vuex.Store({
  state: {
    userInfo:{}
  },
  mutations: {
  },
  actions: {
  },
  modules: {
  }
})

設定登入的頁面(部分程式碼,無法複製即用,僅作參考)

登入方法

//登入方法
login() {
  //驗證碼的驗證
  var randStr = this.rand.toString().replace(/,/g, ""); //隨機生成的驗證碼為陣列形式,此處將其轉為字串並去掉中間相隔的逗號
  var codeStr = this.code; //使用者輸入的驗證碼
  if (randStr.toLowerCase() == codeStr.toLowerCase()) { //比較使用者輸入的與隨機生成的驗證碼,不區分大小寫
    //獲取登入介面
    axios.post("user/login", {
      name: this.name,
      password: this.password,
      administrator: this.usertyp
    }).then(result => {
      console.log(result.data);
      const code = result.data.code;
      this.token = code;
      if (this.token == 1003) {
        this.$message.error('使用者名稱或密碼未輸入!');
      } else if (this.token == 1001) {
        this.$message.error('登入失敗,請檢查使用者名稱或者密碼是否正確。');
      } else if (this.token == 1005) {
        this.$message.error('您不是管理員,無管理員登入許可權!');
      } else if (this.token == 200) {
        if (this.usertyp == "2") { //管理員登入
          this.$message.success('登入成功!');
          this.dialogFormVisible = false; //登入成功後登入插槽關閉
          this.loginReg = false;//隱藏登入註冊按鈕,顯示歡迎資訊
          this.manage = true;//顯示管理員登入資訊
          let userInfo = {
            isLogin: true,
            manage: true,
            name: this.name
          };
          localStorage.setItem("userInfo", JSON.stringify(userInfo));
          this.$store.state.userInfo = userInfo
          console.log('this.$store.state.userInfo', this.$store.state.userInfo)
          setTimeout(() => { //此處必須使用vue函數,否則this無法訪vue範例
            this.$message(`歡迎您,管理員 ${this.name}!`)
          }, 2000);
          console.log(this.usertyp)
        } else if (this.usertyp == "") {  //普通使用者
          this.$message.success('登入成功!');
          this.dialogFormVisible = false; //登入成功後插槽關閉
          this.loginReg = false;//隱藏登入註冊按鈕,顯示歡迎資訊
          this.user = true; //顯示普通使用者登入資訊
          let userInfo = {
            isLogin: true,
            manage: false,
            name: this.name
          }
          localStorage.setItem("userInfo", JSON.stringify(userInfo));
          this.$store.state.userInfo = userInfo
          setTimeout(() => { //此處必須使用vue函數,否則this無法訪vue範例
            this.$message(`歡迎您,尊貴的晉之魂使用者 ${this.name}!`)
          }, 2000);
          console.log(this.usertyp)
        }
        this.Cookie.set("UserName", this.name); //將使用者名稱存到cookie
        console.log('登入狀態為:' + this.token);
      }
    })
  } else {
    this.$message.error('請輸入正確的驗證碼');
  }
},

退出登入方法

//退出登入
logout() {
  this.Cookie.remove("UserName");
  this.loginReg = true;
  this.manage = false;
  this.user = false;
  this.log_out = false;
  localStorage.clear();
  setTimeout(() => {
    this.$router.push({
      path: '/'
    }, () => {
    }, () => {
    });//退出登入後2秒後跳轉至首頁
  }, 2000)
  //加()=>{},()=>{} 可解決路由重複後臺報錯問題
},

掛載階段判斷登入狀態

mounted() {
      // 判斷登入狀態
      let userInfo = JSON.parse(localStorage.getItem('userInfo'));
      if (null === userInfo) return;
      console.log('userInfo', userInfo.isLogin);
      if (userInfo.isLogin) {
        this.dialogFormVisible = false; //登入成功後插槽關閉
        this.loginReg = false;//隱藏登入註冊按鈕,顯示歡迎資訊
        this.name = userInfo.name;
        if (userInfo.manage) {
          this.manage = true;//顯示管理員登入資訊
        } else {
          this.user = true;//顯示普通使用者登入資訊
        }
      }
    }

提示:小馬使用的是 vue + Element UI,使用其他技術程式碼可能不同,但思路是不變的。

總結

到此這篇關於Vue專案如何保持使用者登入狀態的文章就介紹到這了,更多相關Vue保持使用者登入狀態內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com