Vue+element+cookieパスワード機能の簡単な実現方法を覚えてください。
実装機能:
1、ログイン時はパスワードを覚えて、クッキーでアカウントとパスワードを保存して、パスワードを二回暗号化処理します。次回は自動的にアカウントのパスワードを入力します。
2、登録時にチェックせずに、cookieをクリアして、次の登録には入力が必要です。
効果図:
==================================================================================================================================================================================================================================================================================================
Html
js部分:
ログイン
ここで、Vue+elemen+cookieについて暗証番号機能を覚える簡単な実現方法についての文章を紹介します。Vue+element+cookieに関する暗証番号機能の内容をより多く覚えています。私達の以前の文章を検索したり、下記の関連記事を見たりしてください。これからもよろしくお願いします。
1、ログイン時はパスワードを覚えて、クッキーでアカウントとパスワードを保存して、パスワードを二回暗号化処理します。次回は自動的にアカウントのパスワードを入力します。
2、登録時にチェックせずに、cookieをクリアして、次の登録には入力が必要です。
効果図:
==================================================================================================================================================================================================================================================================================================
Html
<div class="login-form-item">
<el-form :model="ValidateForm" ref="ValidateForm" label-width="100px" class="demo-ruleForm">
<el-form-item
prop="username"
:rules="[{ required: true, message: ' '}
]">
<span><i class="el-icon-user"></i></span><el-input type="username" v-model.number="ValidateForm.username" autocomplete="off" clearable placeholder=" "></el-input>
</el-form-item>
<br>
<el-form-item
prop="password"
:rules="[{ required: true, message: ' '},
]">
<span><i class="el-icon-lock"></i></span><el-input type="password" v-model.number="ValidateForm.password" autocomplete="off" clearable show-password placeholder=" "></el-input>
</el-form-item>
<br>
<el-form-item
prop="sidentify"
:rules="[
{ required: true, message: ' '},]"
>
<el-row class="sidentify">
<el-col :span="21">
<el-input type="age" v-model="ValidateForm.sidentify" autocomplete="off" placeholder=" "></el-input>
</el-col>
<el-col :span="3" class="sidentify sidentify-img">
<sidentify :changeCode.sync='identifyCode' ref="switchSidentify"></sidentify>
</el-col>
</el-row>
</el-form-item>
<el-form-item>
<el-checkbox v-model="checked" class="sidentify"> </el-checkbox>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="submitForm('ValidateForm')" class="login-btn"> </el-button>
</el-form-item>
</el-form>
</div>
暗号化方法は私が使っているbase 64とCryptJSをダウンロードしてください。js部分:
ログイン
//
submitForm(formName) {
this.$refs[formName].validate((valid) => {
if (valid) {
let username=this.ValidateForm.username;
let pwd=this.ValidateForm.password;
let sidentify=this.ValidateForm.sidentify;
//
if (sidentify == this.identifyCode){
this.request.post(this.api.login.logindo,{username:username,pwd:pwd}).then((res)=>{
console.log(res);
if (res.data.code == 200){
this.$message({
message : ' !',
type : 'success'
})
// check
this.checkedPwd(username,pwd)
this.$router.push({name:'Home'})
}else {
this.$message({
message : ' , !',
type : 'error'
})
//
this.resetForm('ValidateForm')
//
this.$refs.switchSidentify.changeCode()
}
})
}else {
this.$message({
message : ' , !',
type : 'error'
})
this.$refs.switchSidentify.changeCode()
this.resetForm('ValidateForm')
}
} else {
return false;
}
});
},
チェック方法:
checkedPwd(username,pwd){
// cookie
if (this.checked){
// base64
let base64Pwd=Base64.encode(pwd);
// Encrypt
let cryptoJsPwd=CryptoJS.AES.encrypt(base64Pwd,key).toString()
//
this.setCookie(username,cryptoJsPwd,7)
}else{
//
this.clearCookie()
}
},
読み込みとクリアクッキーの設定
// 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 = "password" + "=" + c_pwd + ";path=/;expires=" + exdate.toGMTString();
},
// cookie
getCookie: function() {
if (document.cookie.length > 0) {
//checked true
this.checked=true
var arr = document.cookie.split('; ');
for (var i = 0; i < arr.length; i++) {
var arr2 = arr[i].split('=');
if (arr2[0] == 'username') {
this.ValidateForm.username = arr2[1];
} else if (arr2[0] == 'password') {
// Decrypt
let bytes = CryptoJS.AES.decrypt(arr2[1],key)
let originalText=bytes.toString(CryptoJS.enc.Utf8)
// base64
let pwd=Base64.decode(originalText)
this.ValidateForm.password = pwd;
}
}
}
},
// cookie
clearCookie: function() {
this.setCookie("", "", -1); // 2 , 1
},
必ず作成してクッキーを読みます。
created () {
this.getCookie()
},
締め括りをつけるここで、Vue+elemen+cookieについて暗証番号機能を覚える簡単な実現方法についての文章を紹介します。Vue+element+cookieに関する暗証番号機能の内容をより多く覚えています。私達の以前の文章を検索したり、下記の関連記事を見たりしてください。これからもよろしくお願いします。