Vue中使用 captcha.min.js 做验证码


1 verificationCode() {
2       let captcha1 = new CaptchaMini()
3       captcha1.draw(document.querySelector('#captcha1'), r => {
4         this.Verification = r
5       })
6  },

先在要用的组件中引入 

import CaptchaMini from '../../static/js/captcha.min.js'
 
然后写一个容器放验证码:
<canvas class="canvas_v" width="100" height="50" id="captcha1"></canvas>
 
最后把上面的代码在加载完dom后执行就可以了(
this.Verification写你自己的变量
 
captcha.min.js地址:https://blog-static.cnblogs.com/files/lyt520/captcha.min.js


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM