您好,登錄后才能下訂單哦!
本文介紹了vue項(xiàng)目實(shí)現(xiàn)記住密碼到cookie功能示例,分享給大家,具體如下:
登陸頁面
實(shí)現(xiàn)功能:
1.記住密碼勾選,點(diǎn)登陸時(shí),將賬號(hào)和密碼保存到cookie,下次登陸自動(dòng)顯示到表單內(nèi)
2.不勾選,點(diǎn)登陸時(shí)候則清空之前保存到cookie的值,下次登陸需要手動(dòng)輸入
大體思路就是通過存/取/刪cookie實(shí)現(xiàn)的;每次進(jìn)入登錄頁,先去讀取cookie,如果瀏覽器的cookie中有賬號(hào)信息,就自動(dòng)填充到登錄框中,存cookie是在登錄成功之后,判斷當(dāng)前用戶是否勾選了記住密碼,如果勾選了,則把賬號(hào)信息存到cookie當(dāng)中,效果圖如上:
直接上主要的代碼
HTML部分
<div 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> <div class="login-btn"> <el-button type="primary" @click="submitForm('ruleForm')">登錄</el-button> </div> </el-form> </div>
JS部分
//頁面加載調(diào)用獲取cookie值 mounted() { this.getCookie(); }, methods: { submitForm(formName) { const self = this; //判斷復(fù)選框是否被勾選 勾選則調(diào)用配置cookie方法 if (self.checked == true) { console.log("checked == true"); //傳入賬號(hào)名,密碼,和保存天數(shù)3個(gè)參數(shù) self.setCookie(self.ruleForm.username, self.ruleForm.password, 7); }else { console.log("清空Cookie"); //清空Cookie self.clearCookie(); } //與后端請(qǐng)求代碼,本功能不需要與后臺(tái)交互所以省略 console.log("登陸成功"); }); }, //設(shè)置cookie setCookie(c_name, c_pwd, exdays) { var exdate = new Date(); //獲取時(shí)間 exdate.setTime(exdate.getTime() + 24 * 60 * 60 * 1000 * exdays); //保存的天數(shù) //字符串拼接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('='); //再次切割 //判斷查找相對(duì)應(yīng)的值 if (arr2[0] == 'userName') { this.ruleForm.username = arr2[1]; //保存到保存數(shù)據(jù)的地方 } else if (arr2[0] == 'userPwd') { this.ruleForm.password = arr2[1]; } } } }, //清除cookie clearCookie: function() { this.setCookie("", "", -1); //修改2值都為空,天數(shù)為負(fù)1天就好了 }
瀏覽器中的cookie信息如下圖,注意這里的cookie的expire/Max-Age過期時(shí)間,這個(gè)時(shí)間是格林尼治標(biāo)準(zhǔn)時(shí)間GMT,世界統(tǒng)一的時(shí)間,GMT+8小時(shí)就是北京時(shí)間。(這里不做加密功能)
源碼鏈接 vue項(xiàng)目實(shí)現(xiàn)表單登錄頁保存賬號(hào)和密碼到cookie功能
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。