使用 svg-captcha 在 eggjs 生成图形验证码

发布于 2020-06-05 20:41:54 字数 1098 浏览 1891 评论 0

找回密码和登录需要一个图形验证码,找了半天发现这个插件挺好用的,分享给大家使用 svg-captcha 在 eggjs 生成图形验证码。

首先安装

npm install --save svg-captcha

创建文件

在 app/controller 下面新建 verification.js

const svgCaptcha = require('svg-captcha');
const Controller = require('egg').Controller;
 
class UtilController extends Controller {
  async captcha() {
    const captcha = svgCaptcha.create({
      size: 4,
      fontSize: 50,
      ignoreChars: 'Ooli',
      width: 100,
      height: 40,
      noise: 3,
      color: true,
      background: '#cc9966',
    });
    this.ctx.session.captcha = captcha.text;
    this.ctx.response.type = 'image/svg+xml';
    this.ctx.body = captcha.data;
  }
}
 
module.exports = UtilController;

在 router.js 里面新增

apiV1Router.get('/verification', controller.verification.captcha);

svg-captcha 项目介绍:https://www.wenjiangs.com/article/nodejs-svg-captcha.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

JSmiles

生命进入颠沛而奔忙的本质状态,并将以不断告别和相遇的陈旧方式继续下去。

0 文章
0 评论
84960 人气
更多

推荐作者

lorenzathorton8

文章 0 评论 0

Zero

文章 0 评论 0

萧瑟寒风

文章 0 评论 0

mylayout

文章 0 评论 0

tkewei

文章 0 评论 0

17818769742

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文