您好,登錄后才能下訂單哦!
怎么在Vue項目中利用localStorage和Vuex保存用戶登錄信息?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
api.js
import axios from 'axios' const baseURL = 'http://XXX // 全局的 axios 默認值 axios.defaults.baseURL = baseURL // 登錄請求 const loginCheck = params => { return axios.post('/login', params).then(res => { return res.data }) } export { loginCheck }
store.js
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) const actions = {} const mutations = { handleUserName: (state, user_name) => { state.user_name = user_name // 把登錄的用戶的名保存到localStorage中,防止頁面刷新,導致vuex重新啟動,用戶名就成為初始值(初始值為空)的情況 localStorage.setItem('user_name', user_name) } } const state = { user_name: '' || localStorage.getItem('user_name') } // getters 只會依賴 state 中的成員去更新 const getters = { userName: (state) => state.user_name } const store = new Vuex.Store({ actions, mutations, state, getters }) export { store }
login.vue
methods:{ login(formName){ this.$refs[formName].validate((valid) => { if (valid) { // 調用登錄請求接口 loginCheck(this.form).then(res=>{ // console.log(res); // 登錄成功,提示成功信息,然后跳轉到首頁,同時將token保存到localstorage中, 將登錄名使用vuex傳遞到Home頁面 if(res.meta.status === 200){ // 提示成功信息 this.$message({ message: res.meta.msg, type: 'success' }); var that = this; // 跳轉到首頁 setTimeout(function(){ that.$router.push({name:'Home'}) },1000) localStorage.setItem('token',res.data.token) // 將登錄名使用vuex傳遞到Home頁面 this.$store.commit('handleUserName',res.data.username); }else{ // 登錄失敗,就提示錯誤信息 this.$message({ message: '登錄失敗,'+res.meta.msg, type: 'error' }); } }) } else { return false; } }); } }
Home.vue
您好,{{$store.getters.username}}
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。