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) { // 繪制干擾線 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)輸入用戶名", 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項(xiàng)目調(diào)試的三種方法總結(jié)
這篇文章主要給大家總結(jié)介紹了關(guān)于vue項(xiàng)目調(diào)試的三種方法,大家可以根據(jù)需要選擇調(diào)試方法,文中通過(guò)圖文介紹的非常詳細(xì),需要的朋友可以參考下2023-09-09Vue實(shí)現(xiàn)類(lèi)似Spring官網(wǎng)圖片滑動(dòng)效果方法
這篇文章主要介紹了Vue實(shí)現(xiàn)類(lèi)似Spring官網(wǎng)圖片滑動(dòng)效果方法,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2019-03-03VUE前端實(shí)現(xiàn)token的無(wú)感刷新3種方案(refresh_token)
這篇文章主要給大家介紹了關(guān)于VUE前端實(shí)現(xiàn)token的無(wú)感刷新3種方案(refresh_token)的相關(guān)資料,為了提供更好的用戶體驗(yàn),我們可以通過(guò)實(shí)現(xiàn)Token的無(wú)感刷新機(jī)制來(lái)避免用戶在使用過(guò)程中的中斷,需要的朋友可以參考下2023-11-11Vue3的vite中圖片動(dòng)態(tài)加載3種方式
這篇文章主要給大家介紹了關(guān)于Vue3的vite中圖片動(dòng)態(tài)加載3種方式的相關(guān)資料,圖片進(jìn)入可視區(qū)域,進(jìn)行動(dòng)態(tài)加載圖片操作,文中通過(guò)代碼介紹的非常詳細(xì),需要的朋友可以參考下2023-11-11vue跳轉(zhuǎn)頁(yè)簽傳參并查詢參數(shù)的保姆級(jí)教程
這篇文章主要介紹了vue跳轉(zhuǎn)頁(yè)簽傳參并查詢參數(shù)的保姆級(jí)教程,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2023-04-04Vue.js實(shí)現(xiàn)簡(jiǎn)單ToDoList 前期準(zhǔn)備(一)
這篇文章主要介紹了Vue.js實(shí)現(xiàn)簡(jiǎn)單ToDoList的前期準(zhǔn)備,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-12-12