Hello, I’m Today, when I was working on a project where vue and springboot interact, I wanted to implement some operations based on the front end that only allow access to certain pages after login verification, so here is a solution to achieve this function. First, let me tell you how I determine whether I have logged in. 1. Solution Since the shiro+Jwt security framework is used in my springboot background, a If there is no token, it means you are not logged in, and j will jump to the login page. In order to simplify the operation, I encapsulated the verification process.
2. Let the browser store the token returned by the serverFirst, let's take a look at how the token returned by the server is stored in the front-end page. First, I encapsulated a SET_TOKEN method in the index.js file under the store file to store the token in the browser, so that we can get our token from the local every time through localStorage.getItem("token"), and also encapsulated a REMOVE_INFO method to clear the token information in the browser when we log out. The code in index.js under the store file is as follows: import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({ state: { // token: "", //User information can be directly retrieved from the browser token: localStorage.getItem("token"), //Deserialization operation userInfo: JSON.parse(sessionStorage.getItem("userInfo")) }, mutations: /**Similar to set operation*/ //Assign value to token SET_TOKEN: (state, token) => { state.token = token; //Store the information in the browser so that it is still there when the browser is closed localStorage.setItem("token", token); }, //Assign value to userinfo SET_USERINFO: (state, userInfo) => { state.userInfo = userInfo; //The session will be cleared every time the browser is closed and regenerated after logging in again. //Since sessionStorage cannot store objects, it must be stored in the form of a string. sessionStorage.setItem("userInfo", JSON.stringify(userInfo)); }, //Remove user information REMOVE_INFO: (state) => { //When removing user information, set all user information to empty state.token = ""; state.userInfo = {}; localStorage.setItem("token", ""); sessionStorage.setItem("userInfo", JSON.stringify("")); } }, getters: { /**Similar to get request*/ //Get user informationgetUser: state => { return state.userInfo; } }, actions: {}, modules: {} }) 3. Set access permissions in the requestSince not all of our pages can be accessed only when logged in, we need to set access permissions for pages that require login. In vue, we usually set the access route in the index.js file under the router. For the request route that needs to add login permissions, we can add a meta attribute to it and set a Boolean attribute requireAuth in it. We will use whether this attribute is true to determine whether login verification is required. For example, our BlogEdit page can only be accessed when logged in, and the Login page does not require login permissions, so we can set it up like this: /** * Routing Registry */ import Vue from 'vue' import VueRouter from 'vue-router' //Registration page import Login from '../views/Login.vue' import BlogEdit from '../views/BlogEdit.vue' Vue.use(VueRouter) const routes = [ { path: '/login', name: 'Login', component: Login }, { path: '/blog/add', name: 'BlogAdd', component: BlogEdit, //Add permission access, indicating that this operation can only be performed after logging in meta: { requireAuth: true } }, ] const router = new VueRouter({ mode: 'history', base: process.env.BASE_URL, routes }) export default router This will be judged every time the BlogEdit page is requested. 4. Encapsulation login verificationNow we need to write a method to verify the properties we just set. So create a permission.js file in the src directory and encapsulate it.
The code is as follows: /** * Request login verification. If you are not logged in, you cannot access the page and return to the login page*/ import router from "./router"; //Route judgment login, according to the parameters of the routing configuration file router.beforeEach((to,from,next)=>{ //Determine whether the route requires login permission//record.meta.requireAuth is the parameter carried in the request if (to.matched.some(record => record.meta.requireAuth)){ //Get the local token const token = localStorage.getItem("token") console.log("Show token----------: " + token) //Judge whether the current token exists, that is, the token used for login if (token){ //If it points to the login page, do nothing if (to.path === "/login"){ }else { //If it is not a login page and the token exists, release next() } }else { // If token does not exist // Go to login next({path:'/login'}) } }else { //If login authentication is not required, directly access next() } })
//Import permission.js, users perform front-end permission controlimport "./permission" To sum up The main operations are the third and fourth steps. As long as you set the login verification parameters in the request route, write the login interception verification in the fourth step, and introduce it into the main.js file, that's it! At this point, the login interception is completed through the front-end verification. This concludes this article on the detailed explanation of the idea of setting up the login verification interception function in Vue. For more relevant vue login verification interception content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: A brief analysis of MySQL's lru linked list
>>: Docker deployment nginx implementation process graphic and text detailed explanation
TabIndex is to press the Tab key to sequentially o...
Table of contents 1. Routing related objects 2. L...
Judging from the results, there is no fixed patte...
1. Go to the official website www.mysql.com and s...
Index definition: It is a separate database struc...
1. Two ways to define react components 1. Functio...
1. Introduction The difference between row locks ...
1. After entering the container cat /etc/hosts It...
First, let's talk about why we use provide/in...
introduction I discovered a problem before: somet...
Placing a search box in the top menu bar is a com...
01. Command Overview The tr command can replace, ...
Table of contents What is JSI What is different a...
Preface: The Linux host is relatively easy to han...
What is the Vendor Prefix? Vendor prefix—Browser ...