微信小程序中的图形验证码

可以在utils中新建一个mcaptcha.js

代码如下:

module.exports = class Mcaptcha {

constructor(options) {

this.options = options;

this.fontSize = options.height * 3 / 6;

this.init();

this.refresh();

}

init() {

this.ctx = wx.createCanvasContext(this.options.el);

this.ctx.setTextBaseline("middle");

this.ctx.setFillStyle(this.randomColor(180, 240));

}

refresh() {

var code = ‘‘;

var txtArr = [‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘g‘, ‘h‘, ‘i‘, ‘j‘, ‘k‘, ‘l‘, ‘m‘, ‘n‘, ‘o‘, ‘p‘, ‘q‘,‘r‘, ‘s‘, ‘t‘, ‘u‘, ‘v‘, ‘w‘, ‘x‘, ‘y‘, ‘z‘, ‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘, ‘F‘, ‘G‘, ‘H‘, ‘I‘, ‘J‘, ‘K‘, ‘L‘, ‘M‘, ‘N‘, ‘O‘,‘P‘, ‘Q‘, ‘R‘, ‘S‘, ‘T‘, ‘U‘, ‘V‘, ‘W‘, ‘X‘, ‘Y‘, ‘Z‘,0,1,2,3,4,5,6,7,8,9]

for(var i=0;i<4;i++){

code += txtArr[this.randomNum(0, txtArr.length)];

}

this.options.createCodeImg = code;

let arr = (code + ‘‘).split(‘‘);

if (arr.length === 0) {

arr = [‘e‘, ‘r‘, ‘r‘,‘o‘,‘r‘];

};

let offsetLeft = this.options.width * 0.6 / (arr.length - 1);

let marginLeft = this.options.width * 0.2;

arr.forEach((item, index) => {

this.ctx.setFillStyle(this.randomColor(0, 180));

let size = this.randomNum(24, this.fontSize);

this.ctx.setFontSize(size);

let dis = offsetLeft * index + marginLeft - size * 0.3;

let deg = this.randomNum(-30, 30);

this.ctx.translate(dis, this.options.height*0.5);

this.ctx.rotate(deg * Math.PI / 180);

this.ctx.fillText(item, 0, 0);

this.ctx.rotate(-deg * Math.PI / 180);

this.ctx.translate(-dis, -this.options.height * 0.5);

})

for (var i = 0; i < 4; i++) {

this.ctx.strokeStyle = this.randomColor(40, 180);

this.ctx.beginPath();

this.ctx.moveTo(this.randomNum(0, this.options.width), this.randomNum(0, this.options.height));

this.ctx.lineTo(this.randomNum(0, this.options.width), this.randomNum(0, this.options.height));

this.ctx.stroke();

}

for (var i = 0; i < this.options.width / 4; i++) {

this.ctx.fillStyle = this.randomColor(0, 255);

this.ctx.beginPath();

this.ctx.arc(this.randomNum(0, this.options.width), this.randomNum(0, this.options.height), 1, 0, 2 * Math.PI);

this.ctx.fill();

}

this.ctx.draw();

}

validate(code){

var code = code.toLowerCase();

var v_code = this.options.createCodeImg.toLowerCase();

console.log(code)

console.log(v_code.substring(v_code.length - 4))

if (code == v_code.substring(v_code.length - 4)) {

return true;

} else {

return false;

}

}

randomNum(min, max) {

return Math.floor(Math.random() * (max - min) + min);

}

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 + ")";

}

}

在对于页面的js中引入mcaptcha.js

var Mcaptcha = require(‘../../../utils/mcaptcha.js‘);

/**

* 生命周期函数--监听页面初次渲染完成

*/

onReady: function () {

this.mcaptcha=new Mcaptcha({

el: ‘canvas‘,

width: 80,

height: 35,

createCodeImg: ""

});

},

。。。

//刷新验证码

onTap(){

this.mcaptcha.refresh();

},

//验证验证码

var res = this.mcaptcha.validate(this.data.imgCode);

if (this.data.imgCode == ‘‘ || this.data.imgCode==null) {

toast.showToast({ title: ‘请输入图形验证码‘ })

return;

}

if (!res) {

toast.showToast({ title: ‘图形验证码错误‘ })

return;

}

wxml页面:

<input type="text" id="code" name="codeImg" placeholder-class=‘C3‘ bindinput=‘codeImg‘ placeholder="请输入图形验证码" maxlength="4" value=‘{{imgCode}}‘/>

<view style=‘position:relative;‘ bindtap="onTap">

<canvas style="width:160rpx;height:70rpx;position:absolute;right:0rpx;bottom:10rpx;text-align: center;z-index:9999;" canvas-id="canvas"></canvas>

</view>

效果:

参考:https://www.jianshu.com/p/064a80a3561a

原文地址:https://www.cnblogs.com/web888/p/9248173.html

时间: 2024-11-10 01:22:46

微信小程序中的图形验证码的相关文章

微信小程序中target与currentTarget

如有错误,请纠出,大家一起进步!!! target在事件流的目标阶段:currentTarget在事件流的捕获,目标及冒泡阶段.但事件流处于目标阶段,target与currentTarget指向一样, 而当处于捕获和冒泡阶段的时候,target指向被单击的对象而currentTarget指向当前事件活动的对象.在微信小程序中也可总结为:target指向发生事件的组件,currentTarget指向绑定事件的组件. 下面请看例子: text.wxml: <view class="view1&

微信小程序中的 hover-class

微信小程序中,可以用 hover-class 属性来指定元素的点击态效果.但是在在使用中要注意,大部分组件是不支持该属性的. 目前支持 hover-class 属性的组件有三个:view.button.navigator. 不支持 hover-class 属性的组件,同时也不支持 hover-stop-propagation.hover-start-time.hover-stay-time 这三个属性. 使用方法: <view hover-class="bg_red">这是

微信小程序中的单位

vw:viewpoint width,视窗宽度,1vw等于视窗宽度的1%. vh:viewpoint height,视窗高度,1vh等于视窗高度的1%. rpx:rpx单位是微信小程序中css的尺寸单位,rpx可以根据屏幕宽度进行自适应.规定屏幕宽为750rpx.如在 iPhone6 上,屏幕宽度为375px,共有750个物理像素,则750rpx = 375px = 750物理像素,1rpx = 0.5px = 1物理像素. 微信小程序也支持rem尺寸单位,rem和rpx的换算关系:rem: 规

微信小程序中获取高度及设备的方法

由于js中可以采用操纵dom的方法来获取页面元素的高度,可是在微信小程序中不能操纵dom,经过查找之后发现仅仅只有以下几个方法可以获取到高度 wx.getSystemInfoSync().windowWidth // 获取当前窗口的宽度 wx.getSystemInfoSync().windowHeight // 获取当前窗口的高度 wx.getSystemInfoSync().model // 获取当前采用的设备 wx.getSystemInfoSync().pixelRatio wx.get

微信小程序中的循环遍历问题

比如:如果在微信小程序中要遍历输出 0-9 的数,我们会使用for循环 for(var i=0;i<10;i++){ console.log(i); } 确实结果也是这样: 但是,如果我在循环时同时调用wx的api接口10次,那么输出的结果就会不同(这是产生了闭关的效应) eg:每次调用一次wx.showToast()接口,并在成功时输出循环的值. for(var i=0;i<10;i++){ wx.showToast({ title: 'haha', success:function(){

微信小程序中使用ECharts 异步加载数据 实现图表

<!--pages/bar/index.wxml--> <view class="container"> <ec-canvas id="mychart-dom-bar" canvas-id="mychart-bar" ec="{{ ec }}"></ec-canvas> </view> import * as echarts from '../../ec-canvas

在微信小程序中使用redux

本文主要讲述,在微信小程序中如何使用redux DEMO 需要解决的问题 如何在小程序中引入redux状态管理库,及它相关的插件? 微信小程序没有清晰的异步api,便于thunkMiddleware处理异步请求(异步操作),如何解决? 如何正确使用store的三大核心方法(getStore dispatch subscribe)? redux并不是react专属,所以他可以在任何地方使用,小程序也不例外.解决上面三个问题就可以了. 问题一: 如何在小程序中引入redux状态管理库,及它相关的插件

在微信小程序中使用LeanCloud(一)

之前学习了微信小程序前端,使用到LeanCloud线上数据库 [传送门].作为一个前端开发人员,了解后端及数据库是学习工作的需要. LeanCloud直接登录,未注册直接创建账户.它是一款免费的线上数据库(开发版免费).适用于一些想自己写微信小程序前端但不太会后端的开发者学习用.本篇文章涉及数据存储服务(增删查改). 首先,下载一个JavaScript-sdk :av-weapp-min.js[下载链接],它是在微信小程序中使用此数据库的关键文件.下载之后,保存至项目路径,这里以'/libs/a

微信小程序中转义字符的处理

在微信小程序开发过程中,有时候会用到常用的一些特殊字符如:'<'.'>'.'&'.'空格'等,微信小程序同样支持对转义字符的处理,下面提供两种方法用来处理微信小程序中转义字符的处理. 1.官方API调用这种方式,我们直接在wxml布局文件中,直接调用相关特殊符号的转义字符会无效,原因是小程序的text文本控件的decode属性没有打开导致的,看下文档说明: 从文档中,我们可以发现,decode属性默认为false,不会解析我们的特殊字符,我们通过设置decode属性为true,并且调用