您好,登錄后才能下訂單哦!
本篇內容介紹了“Node.JS怎么使用純JavaScript生成圖片或滑塊式驗證碼功能”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
有一些Node.JS圖片生成類庫,比如node-captcha等的類庫,需要c/c++程序生成圖片。跨平臺部署不是很方便。這里介紹幾個用純JS實現的圖片驗證碼生成模塊。
captchapng
用純JavaScript實現的驗證碼生成模塊。
https://github.com/GeorgeChan/captchapng
安裝簡單,依賴少:
npm install captchapng
示例:
var captchapng = require('captchapng'); app.get('/sign/captcha.png', function(req, res) { var captchaNumber = parseInt(Math.random() * 9000 + 1000) req.session.captcha = captchaNumber var p = new captchapng(80,20, captchaNumber); // width,height,numeric captcha p.color(0, 0, 0, 0); // First color: background (red, green, blue, alpha) p.color(80, 80, 80, 255); // Second color: paint (red, green, blue, alpha) var img = p.getBase64(); var imgbase64 = new Buffer(img,'base64'); res.writeHead(200, { 'Content-Type': 'image/png' }); res.end(imgbase64); })
Express + Captcha
為Express框架設計的驗證碼生成模塊。
https://github.com/napa3um/node-captcha
安裝&示例:
$ npm install captcha Usage (for Express 4) 'use strict' const express = require('express') const session = require('express-session') const bodyParser = require('body-parser') const captchaUrl = '/captcha.jpg' const captchaId = 'captcha' const captchaFieldName = 'captcha' const captcha = require('./captcha').create({ cookie: captchaId }) const app = express() app.use(session({ secret: 'keyboard cat', resave: false, saveUninitialized: true, })) app.use(bodyParser.urlencoded({ extended: false })) app.get(captchaUrl, captcha.image()) app.get('/', (req, res) => { res.type('html') res.end(` <img src="${ captchaUrl }"/> <form action="/login" method="post"> <input type="text" name="${ captchaFieldName }"/> <input type="submit"/> </form> `) }) app.post('/login', (req, res) => { res.type('html') res.end(` <p>CAPTCHA VALID: ${ captcha.check(req, req.body[captchaFieldName]) }</p> `) }) app.listen(8080, () => { console.log('server started') })
前端滑塊驗證
前端生成軌跡發送到后端驗證,輸入簡單,但是容易被破解。
“Node.JS怎么使用純JavaScript生成圖片或滑塊式驗證碼功能”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。