How to remember passwords on cookies in vue
This article mainly introduces the vue project to implement the remember password to cookie function example (source code attached), which has certain reference value. Interested friends can refer to it
This article introduces the vue project An example of realizing the function of remembering passwords to cookies is shared with everyone. The details are as follows:
Login page
Implementation function:
1. Check Remember Password, and when you click login, the account and password will be saved in cookies, and they will be automatically displayed in the form next time you log in.
2. Uncheck, and when you click login, the previously saved cookies will be cleared. Value, you need to manually enter
next time you log in. The general idea is to save/retrieve/delete cookies; every time you enter the login page, read the cookie first. If there is account information in the browser cookie, It will automatically fill in the login box. The cookie is saved after the login is successful. It is judged whether the current user has checked the Remember Password option. If so, the account information is saved in the cookie. The rendering is as shown above:
Go directly to the main code
HTML part
<p class="ms-login"> <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="0px" class="demo-ruleForm"> <el-form-item prop="username"> <el-input v-model="ruleForm.username" placeholder="用户名"></el-input> </el-form-item> <el-form-item prop="password"> <el-input type="password" placeholder="密码" v-model="ruleForm.password" @keyup.enter.native="submitForm('ruleForm')"></el-input> </el-form-item> <!-- `checked` 为 true 或 false --> <el-checkbox v-model="checked">记住密码</el-checkbox> <br> <br> <p class="login-btn"> <el-button type="primary" @click="submitForm('ruleForm')">登录</el-button> </p> </el-form> </p>
JS part
//页面加载调用获取cookie值 mounted() { this.getCookie(); }, methods: { submitForm(formName) { const self = this; //判断复选框是否被勾选 勾选则调用配置cookie方法 if (self.checked == true) { console.log("checked == true"); //传入账号名,密码,和保存天数3个参数 self.setCookie(self.ruleForm.username, self.ruleForm.password, 7); }else { console.log("清空Cookie"); //清空Cookie self.clearCookie(); } //与后端请求代码,本功能不需要与后台交互所以省略 console.log("登陆成功"); }); }, //设置cookie setCookie(c_name, c_pwd, exdays) { var exdate = new Date(); //获取时间 exdate.setTime(exdate.getTime() + 24 * 60 * 60 * 1000 * exdays); //保存的天数 //字符串拼接cookie window.document.cookie = "userName" + "=" + c_name + ";path=/;expires=" + exdate.toGMTString(); window.document.cookie = "userPwd" + "=" + c_pwd + ";path=/;expires=" + exdate.toGMTString(); }, //读取cookie getCookie: function() { if (document.cookie.length > 0) { var arr = document.cookie.split('; '); //这里显示的格式需要切割一下自己可输出看下 for (var i = 0; i < arr.length; i++) { var arr2 = arr[i].split('='); //再次切割 //判断查找相对应的值 if (arr2[0] == 'userName') { this.ruleForm.username = arr2[1]; //保存到保存数据的地方 } else if (arr2[0] == 'userPwd') { this.ruleForm.password = arr2[1]; } } } }, //清除cookie clearCookie: function() { this.setCookie("", "", -1); //修改2值都为空,天数为负1天就好了 }
The cookie information in the browser is as shown below, pay attention to the cookies here expire/Max-Age expiration time, this time is Greenwich Mean Time (GMT), the world's unified time, GMT 8 hours is Beijing time. (There is no encryption function here)
Source code link vue project implements the form login page to save the account and password to the cookie function
The above is what I compiled for everyone , I hope it will be helpful to everyone in the future.
Related articles:
Using icon icons through Element in Vue
Using bcryptjs password encryption in Express
Encapsulated cache class implemented through redis as cache in nodejs
The above is the detailed content of How to remember passwords on cookies in vue. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

You can add a function to the Vue button by binding the button in the HTML template to a method. Define the method and write function logic in the Vue instance.

The watch option in Vue.js allows developers to listen for changes in specific data. When the data changes, watch triggers a callback function to perform update views or other tasks. Its configuration options include immediate, which specifies whether to execute a callback immediately, and deep, which specifies whether to recursively listen to changes to objects or arrays.

Vue multi-page development is a way to build applications using the Vue.js framework, where the application is divided into separate pages: Code Maintenance: Splitting the application into multiple pages can make the code easier to manage and maintain. Modularity: Each page can be used as a separate module for easy reuse and replacement. Simple routing: Navigation between pages can be managed through simple routing configuration. SEO Optimization: Each page has its own URL, which helps SEO.

There are three ways to refer to JS files in Vue.js: directly specify the path using the <script> tag;; dynamic import using the mounted() lifecycle hook; and importing through the Vuex state management library.

Vue.js has four methods to return to the previous page: $router.go(-1)$router.back() uses <router-link to="/" component window.history.back(), and the method selection depends on the scene.

There are three common methods for Vue.js to traverse arrays and objects: the v-for directive is used to traverse each element and render templates; the v-bind directive can be used with v-for to dynamically set attribute values for each element; and the .map method can convert array elements into new arrays.

There are two ways to jump div elements in Vue: use Vue Router and add router-link component. Add the @click event listener and call this.$router.push() method to jump.
