


This article mainly introduces the method of Vue generating token and saving it in the client's localStorage. The editor thinks it is quite good. Now I will share it with you and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.
We have already learned that data can be saved on the client (browser) through localStorage
.
Our backend has such an interface:
http://localhost/yiiserver/web/index.php/token?client_appid=aaa&client_appkey=bbb
In fact, just Clients (understood as user table) generate a token
client_appid here
is equivalent to the username, client_appkey
is equivalent to the password.
In this way, a access-token
will be generated after backend authentication. We need to save this access-token
on the client.
Note: Our front-end is generally deployed on another server and will cross domains. The back-end needs to handle cross-domain issues. You can write the following code in 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');
Front-end routine
Note that since our project has already used VueX
, then I will definitely use Store
(Concept in vuex) to create a module
.
We have created a new UsersModule.js
to handle the user login business. Be careful not to forget to add the entry file users-index Introduced in .js
. If our "Member Backstage" also needs user-related data, it must also be introduced.
Modify in 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}){ // 发送get请求做权限认证(真实开发建议用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 part: We wrote a userLogin()
method to send an http request to the backend server. The data returned successfully by the request calls the ## defined in the mutations part. #setUser() method is saved to the client.
userLogin() method in actions is for calling on the user login page, that is, in userslogin.vue.
userlogin.vue and modify the following code:
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)); } }
member-index.js of the member backend module:
//引入Module import ResModule from './../Store/modules/ResModules'; import UsersMoule from "./../Store/modules/UsersModule"; const vuex_config = new Vuex.Store({ modules: { res:ResModule, users:UsersMoule } });Then we can , for example, in the navigation bar component navbar.vue:
<a href="##" rel="external nofollow" >{{this.$store.state.users.currentUser.UserName}}</a>In this way, access the properties in users.
Vue uses the token to jump to the login page after it expires
Vue-resource interceptor determines token failure and jumps
PHP's WeChat official account verification token, reply content, and push message method
The above is the detailed content of Vue generates a token and saves it in the client's localStorage instance.. For more information, please follow other related articles on the PHP Chinese website!

存储数据到localstorage为何总是失败?需要具体代码示例在前端开发中,我们经常需要将数据存储在浏览器端,以便提高用户体验和方便之后的数据访问。Localstorage是HTML5提供的一项用于客户端存储数据的技术,它提供了一种简单的方法来存储数据,并且可以在页面刷新或关闭后保持数据的持久化。然而,当我们使用localstorage进行数据存储时,有时

如何设置localstorage的过期时间,需要具体代码示例随着互联网发展的迅猛,前端开发中经常需要在浏览器中保存数据。而localstorage是一种常用的WebAPI,旨在提供了一种在浏览器中本地存储数据的方式。然而,localstorage并没有提供一个直接的方法来设置过期时间。本文将介绍如何通过代码示例来实现设置localstorage的过期时间。

如何恢复被删除的Localstorage数据?Localstorage是一种用于在网页中存储数据的技术。它被广泛应用于各种网页应用程序中,以便在多个页面之间共享数据。然而,有时候我们可能会意外地删除了Localstorage中的数据,这给我们带来了困扰。那么,如何恢复被删除的Localstorage数据呢?下面是具体的步骤和代码示例。步骤1:停止写入Loca

localstorage为什么无法正常保存我的数据?在Web开发中,我们经常需要将用户的数据保存在本地,以便在用户下次访问网站时能够快速加载或恢复数据。而在浏览器中,我们可以使用localStorage来实现这个功能。然而,有时候我们会发现使用localStorage保存的数据并不能正常工作。那么,为什么会出现这种情况呢?在理解为什么localStorage

localstorage不安全的原因是数据不加密、XSS攻击、CERF攻击、容量限制等。详细介绍:1、数据不加密,localstorage是一个简单的键值对存储系统,它将数据以明文形式存储在用户的浏览器中,这意味着任何人都可以轻松地访问和读取存储在localstorage中的数据,如果敏感信息存储在localstorage中,那么黑客或恶意用户可以轻松地获取这些信息等等。

如何使用localstorage存储数据?简介:localstorage是一种HTML5提供的浏览器本地存储机制,通过它可以方便地在浏览器中存储和读取数据。本文将介绍如何使用localstorage存储数据,并提供具体的代码示例。本文共分为以下几个部分:1、localstorage简介;2、使用localstorage存储数据的步骤;3、代码示例;4、常见问

localstorage不安全的原因:1、存储内容可被篡改;2、数据可被窃取;3、数据可被伪造;4、跨站点脚本攻击;5、清除浏览器数据。详细介绍:1、存储内容可被篡改,localStorage中的数据是存储在用户的浏览器中的,这意味着任何能够访问该浏览器的人都可以查看和修改localStorage中的数据;2、数据可被窃取,由于localStorage中的数据是存储在用户等等。

localStorage是一种Web API,可以在Web浏览器中存储和检索数据,它允许网站将数据存储在用户的本地浏览器中,而不是在服务器上。它可以用于存储许多不同类型的数据,例如用户设置、首选项、购物车数据等。在不同的浏览器中具有不同的存储限制,并且通常有一个最大存储量限制。它可以用于改善网站的用户体验和提供个性化服务。但是在使用localStorage时需要注意隐私等等。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
