vue實(shí)現(xiàn)登錄頁(yè)面的驗(yàn)證碼以及驗(yàn)證過(guò)程解析(面向新手)
做成之后就
是這個(gè)樣子
接下來(lái)上代碼
創(chuàng)建一個(gè)組件。顯示驗(yàn)證碼圖片
<template> <div class="s-canvas"> <canvas id="s-canvas" :width="contentWidth" :height="contentHeight"></canvas> </div> </template> <script> export default{ name: 'SIdentify', props: { identifyCode: { // 默認(rèn)注冊(cè)碼 type: String, default: '1234' }, fontSizeMin: { // 字體最小值 type: Number, default: 25 }, fontSizeMax: { // 字體最大值 type: Number, default: 35 }, backgroundColorMin: { // 驗(yàn)證碼圖片背景色最小值 type: Number, default: 200 }, backgroundColorMax: { // 驗(yàn)證碼圖片背景色最大值 type: Number, default: 220 }, dotColorMin: { // 背景干擾點(diǎn)最小值 type: Number, default: 60 }, dotColorMax: { // 背景干擾點(diǎn)最大值 type: Number, default: 120 }, contentWidth: { // 容器寬度 type: Number, default: 90 }, contentHeight: { // 容器高度 type: Number, default: 38 } }, methods: { // 生成一個(gè)隨機(jī)數(shù) randomNum (min, max) { return Math.floor(Math.random() * (max - min) + min) }, // 生成一個(gè)隨機(jī)的顏色 randomColor (min, max) { let r = this.randomNum(min, max) let g = this.randomNum(min, max) let b = this.randomNum(min, max) return 'rgb(' + r + ',' + g + ',' + b + ')' }, drawPic () { let canvas = document.getElementById('s-canvas') let ctx = canvas.getContext('2d') ctx.textBaseline = 'bottom' // 繪制背景 ctx.fillStyle = '#e6ecfd' ctx.fillRect(0, 0, this.contentWidth, this.contentHeight) // 繪制文字 for (let i = 0; i < this.identifyCode.length; i++) { this.drawText(ctx, this.identifyCode[i], i) } this.drawLine(ctx) this.drawDot(ctx) }, drawText (ctx, txt, i) { ctx.fillStyle = this.randomColor(50, 160) // 隨機(jī)生成字體顏色 ctx.font = this.randomNum(this.fontSizeMin, this.fontSizeMax) + 'px SimHei' // 隨機(jī)生成字體大小 let x = (i + 1) * (this.contentWidth / (this.identifyCode.length + 1)) let y = this.randomNum(this.fontSizeMax, this.contentHeight - 5) var deg = this.randomNum(-30, 30) // 修改坐標(biāo)原點(diǎn)和旋轉(zhuǎn)角度 ctx.translate(x, y) ctx.rotate(deg * Math.PI / 180) ctx.fillText(txt, 0, 0) // 恢復(fù)坐標(biāo)原點(diǎn)和旋轉(zhuǎn)角度 ctx.rotate(-deg * Math.PI / 180) ctx.translate(-x, -y) }, drawLine (ctx) { // 繪制干擾線(xiàn) for (let i = 0; i < 4; i++) { ctx.strokeStyle = this.randomColor(100, 200) ctx.beginPath() ctx.moveTo(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight)) ctx.lineTo(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight)) ctx.stroke() } }, drawDot (ctx) { // 繪制干擾點(diǎn) for (let i = 0; i < 30; i++) { ctx.fillStyle = this.randomColor(0, 255) ctx.beginPath() ctx.arc(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight), 1, 0, 2 * Math.PI) ctx.fill() } } }, watch: { identifyCode () { this.drawPic() } }, mounted () { this.drawPic() } } </script>
在登錄頁(yè)面中
驗(yàn)證碼輸輸入框
<el-form-item prop="code"> <el-input type="text" v-model="formLogin.code" placeholder="- - - -"> <template slot="prepend">驗(yàn)證碼</template> <template slot="append"> <div class="login-code" @click="refreshCode"> <Identify :identifyCode="identifyCode"></Identify> </div> </template> </el-input> </el-form-item>
登錄按鈕
<el-button-group> <el-button style="width:100%" @click="submit" type="primary">登錄</el-button> </el-button-group>
引入之前的組件(在例子中它叫identify)
import Identify from './identify'
在登錄組件中引入Identify (這是驗(yàn)證碼組件)這一部分略
在data中
// 表單 formLogin: { username: "", password: "", code: "" }, identifyCodes: '1234567890abcdefjhijklinopqrsduvwxyz', identifyCode: '', // 校驗(yàn) rules: { username: [ { required: true, message: "請(qǐng)輸入用戶(hù)名", trigger: "blur" } ], password: [{ required: true, message: "請(qǐng)輸入密碼", trigger: "blur" }], code: [{ required: true, message: "請(qǐng)輸入驗(yàn)證碼", trigger: "blur" }] }
在mounted中
mounted () { // 初始化驗(yàn)證碼 this.identifyCode = '' this.makeCode(this.identifyCodes, 4) },
在method中
// 引入驗(yàn)證接口 ...mapActions("d2admin/account", ["login"]), // 重置驗(yàn)證碼 refreshCode () { this.identifyCode = '' this.makeCode(this.identifyCodes, 4) }, makeCode (o, l) { for (let i = 0; i < l; i++) { this.identifyCode += this.identifyCodes[this.randomNum(0, this.identifyCodes.length)] } }, randomNum (min, max) { return Math.floor(Math.random() * (max - min) + min) }, /** * @description 提交表單 */ // 提交登錄信息 submit() { if (this.formLogin.code.toLowerCase() !== this.identifyCode.toLowerCase()) { this.$message.error('請(qǐng)?zhí)顚?xiě)正確驗(yàn)證碼') this.refreshCode() return } this.$refs.loginForm.validate(valid => { if (valid) { // 登錄 // 注意 這里的演示沒(méi)有傳驗(yàn)證碼 // 具體需要傳遞的數(shù)據(jù)請(qǐng)自行修改代碼 this.login({ vm: this, username: this.formLogin.username, password: this.formLogin.password }); } else { // 登錄表單校驗(yàn)失敗 this.$message.error("表單校驗(yàn)失敗"); } }); }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
使用vue官方提供的模板vue-cli搭建一個(gè)helloWorld案例分析
這篇文章主要介紹了用vue官方提供的模板vue-cli搭建一個(gè)helloWorld案例,需要的朋友可以參考下2018-01-01vue實(shí)現(xiàn)標(biāo)簽云效果的方法詳解
這篇文章主要介紹了vue實(shí)現(xiàn)標(biāo)簽云效果的方法,結(jié)合實(shí)例形式詳細(xì)分析了vue標(biāo)簽云的實(shí)現(xiàn)技巧與相關(guān)操作注意事項(xiàng),需要的朋友可以參考下2019-08-08element編輯表單el-radio回顯之后無(wú)法選擇的問(wèn)題解決
今天主要來(lái)談一下element-ui編輯表單中的el-radio回顯之后無(wú)法選擇的問(wèn)題,主要涉及到vue的雙向綁定,以及element-ui編輯表單中的el-radio的默認(rèn)類(lèi)型,感興趣的可以了解一下2021-08-08使用vue自定義指令開(kāi)發(fā)表單驗(yàn)證插件validate.js
今天就來(lái)介紹一下如何利用vue的自定義指令directive來(lái)開(kāi)發(fā)一個(gè)表單驗(yàn)證插件的過(guò)程,需要的朋友可以參考下2019-05-05VUE子組件的watch不被觸發(fā)問(wèn)題及解決
這篇文章主要介紹了VUE子組件的watch不被觸發(fā)問(wèn)題及解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-10-10el-element中el-table表格嵌套el-select實(shí)現(xiàn)動(dòng)態(tài)選擇對(duì)應(yīng)值功能
這篇文章主要給大家介紹了關(guān)于el-element中el-table表格嵌套el-select實(shí)現(xiàn)動(dòng)態(tài)選擇對(duì)應(yīng)值功能的相關(guān)資料,文中通過(guò)實(shí)例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2023-01-01