概述 网上的前端验证码逻辑总感觉不安全,验证码建议还是使用后端配合验证。 如果产品确定可以上网的话,就可以使用腾讯,百度等第三方验证,对接方便。但是产品可能内网部署,就必须自己写了。 本文章就是基于这
顺晟科技
2022-09-13 11:15:57
224
最近在做一个Vue项目,前端通过手机号、验证码登录,获取验证码按钮需要设置60s倒计时(点击一次后,一分钟内不得再次点击)。先看一下效果图:
输入正确格式的手机号码后,“获取验证码”按钮方可点击;点击“获取验证码”后,按钮进入60s倒计时,效果图如下:
效果图已经有了,接下来就上代码吧!
<el-button @click="getCode()" :class="{\'disabled-style\':getCodeBtnDisable}" :disabled="getCodeBtnDisable">{{codeBtnWord}}</el-button>
data() { return { loginForm: { phoneNumber: \'\', verificationCode: \'\', }, codeBtnWord: \'获取验证码\', // 获取验证码按钮文字 waitTime:61, // 获取验证码按钮失效时间 } }
computed: { // 用于校验手机号码格式是否正确 phoneNumberStyle(){ let reg = /^1[3456789]\d{9}$/ if(!reg.test(this.loginForm.phoneNumber)){ return false } return true }, // 控制获取验证码按钮是否可点击 getCodeBtnDisable:{ get(){ if(this.waitTime == 61){ if(this.loginForm.phoneNumber){ return false } return true } return true }, // 注意:因为计算属性本身没有set方法,不支持在方法中进行修改,而下面我要进行这个操作,所以需要手动添加 set(){} } }
关于上面给计算属性添加set方法,可以参照(https://www.cnblogs.com/belongs-to-qinghua/p/11936476.html)
.el-button.disabled-style { background-color: #EEEEEE; color: #CCCCCC; }
getCode(){ if(this.phoneNumberStyle){ let params = {} params.phone = this.loginForm.phoneNumber // 调用获取短信验证码接口 axios.post(\'/sendMessage\',params).then(res=>{ res = res.data if(res.status==200) { this.$message({ message: \'验证码已发送,请稍候...\', type: \'success\', center:true }) } }) // 因为下面用到了定时器,需要保存this指向 let that = this that.waitTime-- that.getCodeBtnDisable = true this.codeBtnWord = `${this.waitTime}s 后重新获取` let timer = setInterval(function(){ if(that.waitTime>1){ that.waitTime-- that.codeBtnWord = `${that.waitTime}s 后重新获取` }else{ clearInterval(timer) that.codeBtnWord = \'获取验证码\' that.getCodeBtnDisable = false that.waitTime = 61 } },1000) } }
通过上面的代码,就可以实现了,如有错误,敬请指正!
23
2022-09
13
2022-09
13
2022-09
19
2021-06
19
2021-06